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

  /packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
ComposedData.java 32 @Nonnull final String typedWord) {
35 mTypedWord = typedWord;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LastComposedWord.java 67 final InputPointers inputPointers, final String typedWord,
73 mTypedWord = typedWord;
Dictionary.java 141 * @param typedWord the word to compare with
144 protected boolean same(final char[] word, final int length, final String typedWord) {
145 if (typedWord.length() != length) {
149 if (word[i] != typedWord.charAt(i)) {
SuggestedWords.java 53 EMPTY_WORD_INFO_LIST, null /* rawSuggestions */, null /* typedWord */,
390 @Nullable final String typedWord,
396 if (!TextUtils.isEmpty(typedWord)) {
398 typedWord, candidates, -1 /* startIndexExclusive */);
Suggest.java 322 SuggestedWordInfo.removeDups(null /* typedWord */, suggestionsContainer);
349 final String typedWord, final ArrayList<SuggestedWordInfo> suggestions) {
360 typedWord, cur.toString(), cur.mScore);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
SuggestedWordsTests.java 141 final SuggestedWordInfo typedWord = wordsWithTypedWord.getTypedWordInfoOrNull();
142 assertNotNull(typedWord);
143 assertEquals(TYPED_WORD, typedWord.mWord);
149 null /* typedWord */,
162 null /* typedWord */,
  /packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/utils/
StatsUtils.java 74 public static void onAutoCorrection(final String typedWord, final String autoCorrectionWord,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
InputLogic.java     [all...]

Completed in 1365 milliseconds