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

  /packages/inputmethods/LatinIME/native/src/
dictionary.cpp 215 int *currentChars = NULL;
219 currentChars = mInputCodes + (inputIndex * mMaxAlternatives);
242 } else if (c == QUOTE && currentChars[0] != QUOTE || mSkipPos == depth) {
250 while (currentChars[j] > 0) {
251 if (currentChars[j] == lowerC || currentChars[j] == c) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ExpandableDictionary.java 253 int[] currentChars = null;
257 currentChars = mCodes[inputIndex];
283 } else if ((c == QUOTE && currentChars[0] != QUOTE) || depth == skipPos) {
292 final int alternativesSize = skipPos >= 0? 1 : currentChars.length;
295 final int currentChar = currentChars[j];

Completed in 44 milliseconds