Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
DAndroidWordLevelSpellCheckerSession.java220 private SuggestionsInfo onGetSuggestionsInternal(final TextInfo textInfo, in onGetSuggestionsInternal() argument
222 return onGetSuggestionsInternal(textInfo, null, suggestionsLimit); in onGetSuggestionsInternal()
226 final TextInfo textInfo, final PrevWordsInfo prevWordsInfo, in onGetSuggestionsInternal() argument
229 final String inText = textInfo.getText(); in onGetSuggestionsInternal()
390 public SuggestionsInfo onGetSuggestions(final TextInfo textInfo, in onGetSuggestions() argument
394 return onGetSuggestionsInternal(textInfo, suggestionsLimit); in onGetSuggestions()
DAndroidSpellCheckerSession.java213 final TextInfo textInfo = textInfos[i]; in onGetSuggestionsMultiple() local
214 retval[i] = onGetSuggestionsInternal(textInfo, prevWordsInfo, suggestionsLimit); in onGetSuggestionsMultiple()
215 retval[i].setCookieAndSequence(textInfo.getCookie(), textInfo.getSequence()); in onGetSuggestionsMultiple()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
DTextInfoCompatUtils.java62 public static CharSequence getCharSequenceOrString(final TextInfo textInfo) { in getCharSequenceOrString() argument
63 final CharSequence defaultValue = (textInfo == null ? null : textInfo.getText()); in getCharSequenceOrString()
64 return (CharSequence) CompatUtils.invoke(textInfo, defaultValue, in getCharSequenceOrString()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/compat/
DTextInfoCompatUtilsTests.java55 final TextInfo textInfo = TextInfoCompatUtils.newInstance(text, in testGetCharSequence() local
61 TextInfoCompatUtils.getCharSequenceOrString(textInfo); in testGetCharSequence()