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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 87 * @param typedWord the word to compare with
90 protected boolean same(final char[] word, final int length, final String typedWord) {
91 if (typedWord.length() != length) {
95 if (word[i] != typedWord.charAt(i)) {
AutoCorrection.java 111 public static boolean shouldBlockAutoCorrectionBySafetyNet(final String typedWord,
119 final int typedWordLength = typedWord.length();
125 final int distance = BinaryDictionary.editDistance(typedWord, suggestion);
132 Log.e(TAG, "Safety net: before = " + typedWord + ", after = " + suggestion);
LastComposedWord.java 61 final String typedWord, final String committedWord, final String separatorString,
67 mTypedWord = typedWord;
Suggest.java 197 final String typedWord = wordComposer.getTypedWord();
199 ? typedWord.substring(0, typedWord.length() - trailingSingleQuotesCount)
200 : typedWord;
201 LatinImeLogger.onAddSuggestedWord(typedWord, Dictionary.TYPE_USER_TYPED);
277 if (!TextUtils.isEmpty(typedWord)) {
278 suggestionsContainer.add(0, new SuggestedWordInfo(typedWord,
286 suggestionsList = getSuggestionsInfoListWithDebugInfo(typedWord, suggestionsContainer);
367 final String typedWord, final ArrayList<SuggestedWordInfo> suggestions) {
379 typedWord, cur.toString(), cur.mScore)
    [all...]
SuggestedWords.java 104 final String typedWord, final SuggestedWords previousSuggestions) {
107 suggestionsList.add(new SuggestedWordInfo(typedWord, SuggestedWordInfo.MAX_SCORE,
109 alreadySeen.add(typedWord.toString());
LatinIME.java     [all...]
Utils.java 430 public static void onAutoCorrection(final String typedWord, final String correctedWord,
433 if (!isBatchMode && TextUtils.isEmpty(typedWord)) return;
440 LatinImeLogger.logOnAutoCorrectionForTyping(typedWord, correctedWord, codePoint);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/research/
ResearchLogger.java     [all...]

Completed in 1211 milliseconds