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

  /packages/inputmethods/LatinIME/native/src/
dictionary.cpp 57 mInputLength = codesSize;
62 mMaxEditDistance = mInputLength < 5 ? 2 : mInputLength / 2;
67 getWordsRec(DICTIONARY_HEADER_SIZE, 0, mInputLength * 3, false, 1, 0, 0);
69 getWordsRec(0, 0, mInputLength * 3, false, 1, 0, 0);
266 if (length != mInputLength) {
295 if (mInputLength <= inputIndex) {
318 if (depth >= mInputLength && mSkipPos < 0) {
319 registerNextLetter(mWord[mInputLength]);
338 if (mInputLength == inputIndex + 1)
    [all...]
dictionary.h 88 int mInputLength;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 39 private int mInputLength;
189 mInputLength = codes.size();
191 if (mCodes.length < mInputLength) mCodes = new int[mInputLength][];
193 for (int i = 0; i < mInputLength; i++) {
196 mMaxDepth = mInputLength * 3;
198 for (int i = 0; i < mInputLength; i++) {
245 final int codeSize = mInputLength;

Completed in 5873 milliseconds