OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mTypedWord
(Results
1 - 3
of
3
) sorted by null
/packages/inputmethods/LatinIME/common/src/com/android/inputmethod/latin/common/
ComposedData.java
29
public final String
mTypedWord
;
35
mTypedWord
= typedWord;
50
final int lastIndex =
mTypedWord
.length()
51
- StringUtils.getTrailingSingleQuotesCount(
mTypedWord
);
59
final int codePointSize = Character.codePointCount(
mTypedWord
, 0, lastIndex);
63
return StringUtils.copyCodePointsAndReturnCodePointCount(destination,
mTypedWord
, 0,
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LastComposedWord.java
50
public final String
mTypedWord
;
73
mTypedWord
= typedWord;
91
return TextUtils.equals(
mTypedWord
, mCommittedWord);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/accessibility/
AccessibilityUtils.java
56
private String
mTypedWord
;
161
mTypedWord
= null;
163
mTypedWord
= typedWordInfo.mWord;
167
mTypedWord
= null;
184
if (!TextUtils.equals(mAutoCorrectionWord,
mTypedWord
)) {
191
mTypedWord
, mAutoCorrectionWord);
Completed in 102 milliseconds