Searched refs:textInfos (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/textservice/
H A DISpellCheckerSession.aidl26 in TextInfo[] textInfos, int suggestionsLimit, boolean multipleWords);
/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java124 * @param textInfos an array of the text metadata
126 * @param sequentialWords true if textInfos can be treated as sequential words.
129 public SuggestionsInfo[] onGetSuggestionsMultiple(TextInfo[] textInfos, argument
131 final int length = textInfos.length;
134 retval[i] = onGetSuggestions(textInfos[i], suggestionsLimit);
136 textInfos[i].getCookie(), textInfos[i].getSequence());
190 TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) {
196 textInfos, suggestionsLimit, sequentialWords));
189 onGetSuggestionsMultiple( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) argument
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java183 * @param textInfos an array of text metadata for a spell checker
185 * @param sequentialWords true if textInfos can be treated as sequential words.
188 TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) {
194 textInfos, suggestionsLimit, sequentialWords);
225 public SpellCheckerParams(int what, TextInfo[] textInfos, int suggestionsLimit, argument
228 mTextInfos = textInfos;
325 TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) {
330 new SpellCheckerParams(TASK_GET_SUGGESTIONS_MULTIPLE, textInfos,
187 getSuggestions( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) argument
324 getSuggestionsMultiple( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) argument
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java248 TextInfo[] textInfos = new TextInfo[mLength];
264 textInfos[textInfosCount++] = new TextInfo(word, mCookie, mIds[i]);
269 if (textInfosCount < textInfos.length) {
271 System.arraycopy(textInfos, 0, textInfosCopy, 0, textInfosCount);
272 textInfos = textInfosCopy;
275 mSpellCheckerSession.getSuggestions(textInfos, SuggestionSpan.SUGGESTIONS_MAX_SIZE,

Completed in 1279 milliseconds