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);
27 void onGetSentenceSuggestionsMultiple(in TextInfo[] textInfos, int suggestionsLimit);
/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...]
/frameworks/base/core/java/android/widget/
H A DSpellChecker.java272 TextInfo[] textInfos = new TextInfo[mLength];
297 textInfos[textInfosCount++] = new TextInfo(word, mCookie, mIds[i]);
308 if (textInfosCount < textInfos.length) {
310 System.arraycopy(textInfos, 0, textInfosCopy, 0, textInfosCount);
311 textInfos = textInfosCopy;
316 textInfos, SuggestionSpan.SUGGESTIONS_MAX_SIZE);
318 mSpellCheckerSession.getSuggestions(textInfos, SuggestionSpan.SUGGESTIONS_MAX_SIZE,

Completed in 165 milliseconds