HomeSort by relevance Sort by last modified time
    Searched refs:MAX_PREV_WORD_COUNT_FOR_N_GRAM (Results 1 - 16 of 16) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/session/
prev_words_info.h 95 if (n <= 0 || n > MAX_PREV_WORD_COUNT_FOR_N_GRAM) {
103 if (n <= 0 || n > MAX_PREV_WORD_COUNT_FOR_N_GRAM) {
111 if (n <= 0 || n > MAX_PREV_WORD_COUNT_FOR_N_GRAM) {
157 int mPrevWordCodePoints[MAX_PREV_WORD_COUNT_FOR_N_GRAM][MAX_WORD_LENGTH];
158 int mPrevWordCodePointCount[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
159 bool mIsBeginningOfSentence[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
dic_traverse_session.h 169 int mPrevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DicTraverseSession.java 32 new int[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM][];
34 new boolean[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
PrevWordsInfo.java 89 public WordInfo[] mPrevWordsInfo = new WordInfo[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
98 for (int i = 0; i < Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM; i++) {
106 final WordInfo[] prevWordsInfo = new WordInfo[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
Constants.java 169 // (MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1)-gram is supported in Java side. Needs to modify
170 // MAX_PREV_WORD_COUNT_FOR_N_GRAM in native/jni/src/defines.h for suggestions.
171 public static final int MAX_PREV_WORD_COUNT_FOR_N_GRAM = 2;
BinaryDictionary.java 364 final int[][] prevWordCodePointArrays = new int[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM][];
366 new boolean[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
461 final int[][] prevWordCodePointArrays = new int[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM][];
463 new boolean[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
479 final int[][] prevWordCodePointArrays = new int[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM][];
481 new boolean[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
RichInputConnection.java 62 * (Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM + 1) /* words */
63 + Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM /* separators */;
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/utils/
jni_data_utils.h 101 int prevWordCodePoints[MAX_PREV_WORD_COUNT_FOR_N_GRAM][MAX_WORD_LENGTH];
102 int prevWordCodePointCount[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
103 bool isBeginningOfSentence[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
127 MAX_PREV_WORD_COUNT_FOR_N_GRAM);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/pt_common/
dynamic_pt_updating_helper.cpp 93 ASSERT(prevWordsPtNodePos.size() <= MAX_PREV_WORD_COUNT_FOR_N_GRAM);
94 int prevWordTerminalIds[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
110 ASSERT(prevWordsPtNodePos.size() <= MAX_PREV_WORD_COUNT_FOR_N_GRAM);
111 int prevWordTerminalIds[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
PrevWordsInfoUtils.java 37 // Example (when Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM is 2):
58 final WordInfo[] prevWordsInfo = new WordInfo[Constants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
dictionary_utils.cpp 37 int prevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
dictionary.cpp 95 int prevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
122 int prevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/internal/
dic_node_properties.h 152 int mPrevWordsTerminalPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/backward/v402/
ver4_patricia_trie_policy.cpp 281 int prevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
341 int prevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/v4/
ver4_patricia_trie_policy.cpp 292 int prevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
353 int prevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dicnode/
dic_node.h 117 int newPrevWordsPtNodePos[MAX_PREV_WORD_COUNT_FOR_N_GRAM];

Completed in 401 milliseconds