am 082507e1: Header clean up
* commit '082507e1da56c6cefe575ec3d6a334e9b717e3fa': Header clean upmain
commit
97e4b52380
|
@ -17,8 +17,6 @@
|
|||
#ifndef LATINIME_DEFINES_H
|
||||
#define LATINIME_DEFINES_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#ifdef __GNUC__
|
||||
#define AK_FORCE_INLINE __attribute__((always_inline)) __inline__
|
||||
#else // __GNUC__
|
||||
|
|
|
@ -17,8 +17,6 @@
|
|||
#ifndef LATINIME_DIC_TRAVERSE_WRAPPER_H
|
||||
#define LATINIME_DIC_TRAVERSE_WRAPPER_H
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include "defines.h"
|
||||
#include "jni.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#ifndef LATINIME_GESTURE_DECODER_WRAPPER_H
|
||||
#define LATINIME_GESTURE_DECODER_WRAPPER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "defines.h"
|
||||
#include "incremental_decoder_interface.h"
|
||||
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#ifndef LATINIME_INCREMENTAL_DECODER_INTERFACE_H
|
||||
#define LATINIME_INCREMENTAL_DECODER_INTERFACE_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "defines.h"
|
||||
|
||||
namespace latinime {
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
#ifndef LATINIME_INCREMENTAL_DECODER_WRAPPER_H
|
||||
#define LATINIME_INCREMENTAL_DECODER_WRAPPER_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "defines.h"
|
||||
#include "incremental_decoder_interface.h"
|
||||
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
|
||||
#include <cstring> // for memset()
|
||||
#include <sstream> // for debug prints
|
||||
#include <stdint.h>
|
||||
|
||||
#define LOG_TAG "LatinIME: proximity_info_state.cpp"
|
||||
|
||||
|
@ -758,8 +757,8 @@ float ProximityInfoState::calculateSquaredDistanceFromSweetSpotCenter(
|
|||
}
|
||||
|
||||
// Puts possible characters into filter and returns new filter size.
|
||||
int32_t ProximityInfoState::getAllPossibleChars(
|
||||
const size_t index, int32_t *const filter, const int32_t filterSize) const {
|
||||
int ProximityInfoState::getAllPossibleChars(
|
||||
const size_t index, int *const filter, const int filterSize) const {
|
||||
if (index >= mSampledInputXs.size()) {
|
||||
return filterSize;
|
||||
}
|
||||
|
@ -767,7 +766,7 @@ int32_t ProximityInfoState::getAllPossibleChars(
|
|||
const int keyCount = mProximityInfo->getKeyCount();
|
||||
for (int j = 0; j < keyCount; ++j) {
|
||||
if (mSearchKeysVector[index].test(j)) {
|
||||
const int32_t keyCodePoint = mProximityInfo->getCodePointOf(j);
|
||||
const int keyCodePoint = mProximityInfo->getCodePointOf(j);
|
||||
bool insert = true;
|
||||
// TODO: Avoid linear search
|
||||
for (int k = 0; k < filterSize; ++k) {
|
||||
|
|
|
@ -19,7 +19,6 @@
|
|||
|
||||
#include <bitset>
|
||||
#include <cstring> // for memset()
|
||||
#include <stdint.h>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
@ -164,8 +163,7 @@ class ProximityInfoState {
|
|||
|
||||
int getSpaceY() const;
|
||||
|
||||
int32_t getAllPossibleChars(
|
||||
const size_t startIndex, int32_t *const filter, const int32_t filterSize) const;
|
||||
int getAllPossibleChars(const size_t startIndex, int *const filter, const int filterSize) const;
|
||||
|
||||
float getSpeedRate(const int index) const {
|
||||
return mSpeedRates[index];
|
||||
|
|
Loading…
Reference in New Issue