Home
last modified time | relevance | path

Searched refs:DecoderSpecificConstants (Results 1 – 18 of 18) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DDicTraverseSession.java20 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
32 new int[DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH];
34 new int[DecoderSpecificConstants.MAX_PREV_WORD_COUNT_FOR_N_GRAM][];
36 new boolean[DecoderSpecificConstants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
39 new int[DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH * MAX_RESULTS];
DLastComposedWord.java23 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
56 new InputPointers(DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH);
DBinaryDictionaryFileDumper.java34 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
74 DecoderSpecificConstants.SHOULD_VERIFY_MAGIC_NUMBER;
76 DecoderSpecificConstants.SHOULD_VERIFY_CHECKSUM;
DNgramContext.java23 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
113 this(DecoderSpecificConstants.MAX_PREV_WORD_COUNT_FOR_N_GRAM, prevWordsInfo); in NgramContext()
DBinaryDictionaryGetter.java25 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
59 DecoderSpecificConstants.SHOULD_USE_DICT_VERSION;
DWordComposer.java29 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
40 private static final int MAX_WORD_LENGTH = DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH;
DSuggest.java21 import static com.android.inputmethod.latin.define.DecoderSpecificConstants.SHOULD_AUTO_CORRECT_USI…
22 import static com.android.inputmethod.latin.define.DecoderSpecificConstants.SHOULD_REMOVE_PREVIOUSL…
DExpandableBinaryDictionary.java26 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
74 DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DWordInputEventForPersonalization.java24 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
40 new int[DecoderSpecificConstants.MAX_PREV_WORD_COUNT_FOR_N_GRAM][];
42 new boolean[DecoderSpecificConstants.MAX_PREV_WORD_COUNT_FOR_N_GRAM];
DNgramContextUtils.java21 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
68 new WordInfo[DecoderSpecificConstants.MAX_PREV_WORD_COUNT_FOR_N_GRAM]; in getNgramContextFromNthPreviousWord()
DDictionaryInfoUtils.java35 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
60 private static final String DECODER_DICT_SUFFIX = DecoderSpecificConstants.DECODER_DICT_SUFFIX;
386 return res.getIdentifier(DEFAULT_MAIN_DICT + DecoderSpecificConstants.DECODER_DICT_SUFFIX,
589 if (length > DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DFormatSpec.java20 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
190 static final int MAX_WORD_LENGTH = DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH;
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictIOUtils.java20 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
176 for (int depth = 0; depth < DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH; ++depth) { in getTerminalPosition()
DFusionDictionary.java20 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
336 if (word.length >= DecoderSpecificConstants.DICTIONARY_MAX_WORD_LENGTH) { in add()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/define/
DDecoderSpecificConstants.java22 public class DecoderSpecificConstants { class
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/personalization/
DUserHistoryDictionary.java27 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
/packages/inputmethods/LatinIME/
DAndroid.bp34 "java/src/com/android/inputmethod/latin/define/DecoderSpecificConstants.java",
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DInputLogicTests.java26 import com.android.inputmethod.latin.define.DecoderSpecificConstants;
664 if (DecoderSpecificConstants.SHOULD_REMOVE_PREVIOUSLY_REJECTED_SUGGESTION) { in testGestureBackspaceGestureAgain()