Home | History | Annotate | Download | only in textservice

Lines Matching refs:textInfos

131          * @param textInfos an array of the text metadata
133 * @param sequentialWords true if textInfos can be treated as sequential words.
137 public SuggestionsInfo[] onGetSuggestionsMultiple(TextInfo[] textInfos,
139 final int length = textInfos.length;
142 retval[i] = onGetSuggestions(textInfos[i], suggestionsLimit);
144 textInfos[i].getCookie(), textInfos[i].getSequence());
158 * @param textInfos an array of the text metadata
163 public SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple(TextInfo[] textInfos,
165 if (textInfos == null || textInfos.length == 0) {
169 Log.d(TAG, "onGetSentenceSuggestionsMultiple: + " + textInfos.length + ", "
185 final int infosSize = textInfos.length;
189 mSentenceLevelAdapter.getSplitWords(textInfos[i]);
253 TextInfo[] textInfos, int suggestionsLimit, boolean sequentialWords) {
259 textInfos, suggestionsLimit, sequentialWords));
267 public void onGetSentenceSuggestionsMultiple(TextInfo[] textInfos, int suggestionsLimit) {
270 mSession.onGetSentenceSuggestionsMultiple(textInfos, suggestionsLimit));