Home
last modified time | relevance | path

Searched refs:mTypedWord (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
DComposedData.java29 public final String mTypedWord; field in ComposedData
35 mTypedWord = typedWord; in ComposedData()
50 final int lastIndex = mTypedWord.length() in copyCodePointsExceptTrailingSingleQuotesAndReturnCodePointCount()
51 - StringUtils.getTrailingSingleQuotesCount(mTypedWord); in copyCodePointsExceptTrailingSingleQuotesAndReturnCodePointCount()
59 final int codePointSize = Character.codePointCount(mTypedWord, 0, lastIndex); in copyCodePointsExceptTrailingSingleQuotesAndReturnCodePointCount()
63 return StringUtils.copyCodePointsAndReturnCodePointCount(destination, mTypedWord, 0, in copyCodePointsExceptTrailingSingleQuotesAndReturnCodePointCount()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
DAccessibilityUtils.java56 private String mTypedWord; field in AccessibilityUtils
161 mTypedWord = null; in setAutoCorrection()
163 mTypedWord = typedWordInfo.mWord; in setAutoCorrection()
167 mTypedWord = null; in setAutoCorrection()
184 if (!TextUtils.equals(mAutoCorrectionWord, mTypedWord)) { in getAutoCorrectionDescription()
191 mTypedWord, mAutoCorrectionWord); in getAutoCorrectionDescription()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DLastComposedWord.java50 public final String mTypedWord; field in LastComposedWord
73 mTypedWord = typedWord; in LastComposedWord()
91 return TextUtils.equals(mTypedWord, mCommittedWord); in didCommitTypedWord()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/inputlogic/
DInputLogic.java1039 final String lastComposedWord = mLastComposedWord.mTypedWord; in handleBackspaceEvent()
1636 final CharSequence originallyTypedWord = mLastComposedWord.mTypedWord; in revertCommit()