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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Dictionary.java 100 * @param typedWord the word to compare with
103 protected boolean same(final char[] word, final int length, final CharSequence typedWord) {
104 if (typedWord.length() != length) {
108 if (word[i] != typedWord.charAt(i)) {
TextEntryState.java 119 public static void acceptedDefault(CharSequence typedWord, CharSequence actualWord) {
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) {
135 if (typedWord == null) return;
146 public static void acceptedTyped(CharSequence typedWord) {
152 public static void acceptedSuggestion(CharSequence typedWord, CharSequence actualWord) {
155 if (typedWord.equals(actualWord))
    [all...]
LatinIME.java     [all...]

Completed in 152 milliseconds