Searched defs:textInfos (Results 1 - 2 of 2) sorted by relevance

/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

Completed in 36 milliseconds