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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LastComposedWord.java 44 public final String mTypedWord;
67 mTypedWord = typedWord;
84 return TextUtils.equals(mTypedWord, mCommittedWord);
WordComposer.java 41 // The array is limited to MAX_WORD_LENGTH code points, but mTypedWord extends past that
50 private final StringBuilder mTypedWord;
81 mTypedWord = new StringBuilder(MAX_WORD_LENGTH);
93 mTypedWord = new StringBuilder(source.mTypedWord);
111 mTypedWord.setLength(0);
125 mCodePointSize = mTypedWord.codePointCount(0, mTypedWord.length());
170 mTypedWord.appendCodePoint(primaryCode);
225 codePoints = StringUtils.toCodePointArray(mTypedWord.toString())
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java 57 private String mTypedWord;
163 mTypedWord = typedWord;
166 mTypedWord = null;
183 if (!TextUtils.equals(mAutoCorrectionWord, mTypedWord)) {
190 mTypedWord, mAutoCorrectionWord);

Completed in 209 milliseconds