Home
last modified time | relevance | path

Searched refs:DICTIONARY_MAX_WORD_LENGTH (Results 1 – 12 of 12) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DBinaryDictionary.java60 public static final int DICTIONARY_MAX_WORD_LENGTH = 48; field in BinaryDictionary
323 final int start = j * DICTIONARY_MAX_WORD_LENGTH; in getSuggestions()
325 while (len < DICTIONARY_MAX_WORD_LENGTH in getSuggestions()
396 final int[] outCodePoints = new int[DICTIONARY_MAX_WORD_LENGTH]; in getWordProperty()
435 final int[] codePoints = new int[DICTIONARY_MAX_WORD_LENGTH]; in getNextWordProperty()
DDicTraverseSession.java32 new int[DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH];
39 new int[DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH * MAX_RESULTS];
DLastComposedWord.java56 new InputPointers(DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH);
DWordComposer.java40 private static final int MAX_WORD_LENGTH = DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH;
DExpandableBinaryDictionary.java74 DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH;
/packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/define/
DDecoderSpecificConstants.java25 public static final int DICTIONARY_MAX_WORD_LENGTH = 48; field in DecoderSpecificConstants
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DFormatSpec.java187 static final int MAX_WORD_LENGTH = DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DUserHistoryDictionary.java102 if (word.length() > BinaryDictionary.DICTIONARY_MAX_WORD_LENGTH) { in addToDictionary()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictIOUtils.java176 for (int depth = 0; depth < DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH; ++depth) { in getTerminalPosition()
DFusionDictionary.java336 if (word.length >= DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH) { in add()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DDictionaryInfoUtils.java589 if (length > DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH) {
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DBinaryDictionaryTests.java148 for (int i = 0; i < BinaryDictionary.DICTIONARY_MAX_WORD_LENGTH; i++) { in testAddTooLongWord()