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

/frameworks/base/core/java/android/service/textservice/
H A DSpellCheckerService.java132 * @param textInfos an array of the text metadata
134 * @param sequentialWords true if textInfos can be treated as sequential words.
138 public SuggestionsInfo[] onGetSuggestionsMultiple(TextInfo[] textInfos, argument
140 final int length = textInfos.length;
143 retval[i] = onGetSuggestions(textInfos[i], suggestionsLimit);
145 textInfos[i].getCookie(), textInfos[i].getSequence());
159 * @param textInfos an array of the text metadata
164 public SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple(TextInfo[] textInfos, argument
166 if (textInfos
253 onGetSuggestionsMultiple( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) argument
268 onGetSentenceSuggestionsMultiple(TextInfo[] textInfos, int suggestionsLimit) argument
[all...]
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java180 * @param textInfos an array of text metadata for a spell checker
183 public void getSentenceSuggestions(TextInfo[] textInfos, int suggestionsLimit) { argument
185 textInfos, suggestionsLimit);
201 * @param textInfos an array of text metadata for a spell checker
203 * @param sequentialWords true if textInfos can be treated as sequential words.
208 TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) {
213 textInfos, suggestionsLimit, sequentialWords);
249 public SpellCheckerParams(int what, TextInfo[] textInfos, int suggestionsLimit, argument
252 mTextInfos = textInfos;
360 TextInfo[] textInfos, in
207 getSuggestions( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) argument
359 getSuggestionsMultiple( TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) argument
369 getSentenceSuggestionsMultiple(TextInfo[] textInfos, int suggestionsLimit) argument
[all...]

Completed in 105 milliseconds