Searched refs:typedWord (Results 1 - 3 of 3) sorted by relevance
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
H A D | Dictionary.java | 100 * @param typedWord the word to compare with 103 protected boolean same(final char[] word, final int length, final CharSequence typedWord) { argument 104 if (typedWord.length() != length) { 108 if (word[i] != typedWord.charAt(i)) {
|
H A D | TextEntryState.java | 119 public static void acceptedDefault(CharSequence typedWord, CharSequence actualWord) { argument 120 if (typedWord == null) return; 121 if (!typedWord.equals(actualWord)) { 124 sTypedChars += typedWord.length(); 127 LatinImeLogger.logOnAutoSuggestion(typedWord.toString(), actualWord.toString()); 134 public static void backToAcceptedDefault(CharSequence typedWord) { argument 135 if (typedWord == null) return; 146 public static void acceptedTyped(CharSequence typedWord) { argument 152 public static void acceptedSuggestion(CharSequence typedWord, CharSequence actualWord) { argument 155 if (typedWord [all...] |
H A D | LatinIME.java | 1820 CharSequence typedWord = word.getTypedWord(); 1822 boolean typedWordValid = mSuggest.isValidWord(typedWord) || 1824 && mSuggest.isValidWord(typedWord.toString().toLowerCase())); 1833 showSuggestions(stringList, typedWord, typedWordValid, correctionAvailable); 1836 private void showSuggestions(List<CharSequence> stringList, CharSequence typedWord, argument 1843 mBestWord = typedWord;
|
Completed in 54 milliseconds