Home
last modified time | relevance | path

Searched refs:typedWord (Results 1 – 8 of 8) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DDictionary.java144 protected boolean same(final char[] word, final int length, final String typedWord) { in same() argument
145 if (typedWord.length() != length) { in same()
149 if (word[i] != typedWord.charAt(i)) { in same()
DLastComposedWord.java67 final InputPointers inputPointers, final String typedWord, in LastComposedWord() argument
73 mTypedWord = typedWord; in LastComposedWord()
DSuggestedWords.java390 @Nullable final String typedWord, in removeDups()
396 if (!TextUtils.isEmpty(typedWord)) { in removeDups()
398 typedWord, candidates, -1 /* startIndexExclusive */); in removeDups()
DSuggest.java349 final String typedWord, final ArrayList<SuggestedWordInfo> suggestions) { in getSuggestionsInfoListWithDebugInfo() argument
360 typedWord, cur.toString(), cur.mScore); in getSuggestionsInfoListWithDebugInfo()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DSuggestedWordsTests.java155 final SuggestedWordInfo typedWord = wordsWithTypedWord.getTypedWordInfoOrNull(); in testGetTypedWordInfoOrNull() local
156 assertNotNull(typedWord); in testGetTypedWordInfoOrNull()
157 assertEquals(TYPED_WORD, typedWord.mWord); in testGetTypedWordInfoOrNull()
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DComposedData.java32 @Nonnull final String typedWord) { in ComposedData() argument
35 mTypedWord = typedWord; in ComposedData()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
DInputLogic.java2069 final String typedWord = mWordComposer.getTypedWord(); in commitTyped()
2070 if (typedWord.length() > 0) { in commitTyped()
2072 commitChosenWord(settingsValues, typedWord, in commitTyped()
2074 StatsUtils.onWordCommitUserTyped(typedWord, isBatchMode); in commitTyped()
2110 final String typedWord = mWordComposer.getTypedWord(); in commitCurrentAutoCorrection() local
2112 ? autoCorrectionOrNull.mWord : typedWord; in commitCurrentAutoCorrection()
2114 if (TextUtils.isEmpty(typedWord)) { in commitCurrentAutoCorrection()
2121 if (!typedWord.equals(stringToCommit)) { in commitCurrentAutoCorrection()
2130 typedWord, stringToCommit)); in commitCurrentAutoCorrection()
2134 StatsUtils.onAutoCorrection(typedWord, stringToCommit, isBatchMode, in commitCurrentAutoCorrection()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DStatsUtils.java74 public static void onAutoCorrection(final String typedWord, final String autoCorrectionWord, in onAutoCorrection() argument