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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LastComposedWord.java 46 public final String mTypedWord;
64 mTypedWord = typedWord;
80 return TextUtils.equals(mTypedWord, mCommittedWord);
WordComposer.java 39 private StringBuilder mTypedWord;
56 mTypedWord = new StringBuilder(N);
71 mTypedWord = new StringBuilder(source.mTypedWord);
86 mTypedWord.setLength(0);
96 mCodePointSize = mTypedWord.codePointCount(0, mTypedWord.length());
155 mTypedWord.appendCodePoint(primaryCode);
209 // Note: mTypedWord.length() and mCodes.length differ when there are surrogate pairs
210 final int stringBuilderLength = mTypedWord.length()
    [all...]

Completed in 406 milliseconds