HomeSort by relevance Sort by last modified time
    Searched refs:textInfos (Results 1 - 14 of 14) sorted by null

  /frameworks/base/core/java/com/android/internal/textservice/
ISpellCheckerSession.aidl 26 in TextInfo[] textInfos, int suggestionsLimit, boolean multipleWords);
27 void onGetSentenceSuggestionsMultiple(in TextInfo[] textInfos, int suggestionsLimit);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSession.java 124 public SentenceSuggestionsInfo[] onGetSentenceSuggestionsMultiple(TextInfo[] textInfos,
126 final SentenceSuggestionsInfo[] retval = splitAndSuggest(textInfos, suggestionsLimit);
127 if (retval == null || retval.length != textInfos.length) {
132 fixWronglyInvalidatedWordWithSingleQuote(textInfos[i], retval[i]);
149 * @param textInfos an array of the text metadata
154 private SentenceSuggestionsInfo[] splitAndSuggest(TextInfo[] textInfos, int suggestionsLimit) {
155 if (textInfos == null || textInfos.length == 0) {
173 final int infosSize = textInfos.length;
177 sentenceLevelAdapter.getSplitWords(textInfos[i])
    [all...]
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 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)
    [all...]