Searched defs:MAX_WORD_LENGTH (Results 1 - 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DWordComposer.java29 private static final int MAX_WORD_LENGTH = Constants.DICTIONARY_MAX_WORD_LENGTH; field in class:WordComposer
41 // The array is limited to MAX_WORD_LENGTH code points, but mTypedWord extends past that
42 // and mCodePointSize can go past that. If mCodePointSize is greater than MAX_WORD_LENGTH,
43 // this just does not contain the associated code points past MAX_WORD_LENGTH.
45 private final InputPointers mInputPointers = new InputPointers(MAX_WORD_LENGTH);
49 // to MAX_WORD_LENGTH code points.
67 // This is the number of code points entered so far. This is not limited to MAX_WORD_LENGTH.
69 // MAX_WORD_LENGTH in which case mPrimaryKeyCodes only contain the first MAX_WORD_LENGTH
80 mPrimaryKeyCodes = new int[MAX_WORD_LENGTH];
[all...]
H A DExpandableBinaryDictionary.java65 protected static final int MAX_WORD_LENGTH = Constants.DICTIONARY_MAX_WORD_LENGTH; field in class:ExpandableBinaryDictionary
H A DBinaryDictionary.java43 // Must be equal to MAX_WORD_LENGTH in native/jni/src/defines.h
44 private static final int MAX_WORD_LENGTH = Constants.DICTIONARY_MAX_WORD_LENGTH; field in class:BinaryDictionary
64 private final int[] mInputCodePoints = new int[MAX_WORD_LENGTH];
65 private final int[] mOutputCodePoints = new int[MAX_WORD_LENGTH * MAX_RESULTS];
187 if (composerSize > MAX_WORD_LENGTH - 1) return null;
206 final int start = j * MAX_WORD_LENGTH;
208 while (len < MAX_WORD_LENGTH && mOutputCodePoints[start + len] != 0) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DFormatSpec.java220 static final int MAX_WORD_LENGTH = Constants.DICTIONARY_MAX_WORD_LENGTH; field in class:FormatSpec
/packages/inputmethods/LatinIME/native/jni/src/
H A Ddefines.h31 // Must be equal to Constants.Dictionary.MAX_WORD_LENGTH in Java
32 #define MAX_WORD_LENGTH 48 macro
114 dumpWordInfo(&outWords[i * MAX_WORD_LENGTH], MAX_WORD_LENGTH, i, frequencies[i]);

Completed in 190 milliseconds