HomeSort by relevance Sort by last modified time
    Searched full:reconstructedsuggestions (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
SentenceLevelAdapter.java 177 final SuggestionsInfo[] reconstructedSuggestions = new SuggestionsInfo[querySize];
191 reconstructedSuggestions[i] = result != null ? result : EMPTY_SUGGESTIONS_INFO;
193 return new SentenceSuggestionsInfo(reconstructedSuggestions, offsets, lengths);
  /frameworks/base/core/java/android/service/textservice/
SpellCheckerService.java 424 final SuggestionsInfo[] reconstructedSuggestions = new SuggestionsInfo[querySize];
438 reconstructedSuggestions[i] = result != null ? result : EMPTY_SUGGESTIONS_INFO;
440 final int size = reconstructedSuggestions[i].getSuggestionsCount();
441 Log.w(TAG, "reconstructedSuggestions(" + i + ")" + size + ", first = "
442 + (size > 0 ? reconstructedSuggestions[i].getSuggestionAt(0)
447 return new SentenceSuggestionsInfo(reconstructedSuggestions, offsets, lengths);

Completed in 52 milliseconds