Home
last modified time | relevance | path

Searched refs:suggestionsList (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSuggest.java182 final ArrayList<SuggestedWordInfo> suggestionsList; in getSuggestedWordsForNonBatchInput() local
184 suggestionsList = getSuggestionsInfoListWithDebugInfo(typedWord, suggestionsContainer); in getSuggestedWordsForNonBatchInput()
186 suggestionsList = suggestionsContainer; in getSuggestedWordsForNonBatchInput()
197 callback.onGetSuggestedWords(new SuggestedWords(suggestionsList, in getSuggestedWordsForNonBatchInput()
264 final ArrayList<SuggestedWordInfo> suggestionsList = new ArrayList<>(suggestionsSize); in getSuggestionsInfoListWithDebugInfo() local
265 suggestionsList.add(typedWordInfo); in getSuggestionsInfoListWithDebugInfo()
281 suggestionsList.add(cur); in getSuggestionsInfoListWithDebugInfo()
283 return suggestionsList; in getSuggestionsInfoListWithDebugInfo()
DSuggestedWords.java194 final ArrayList<SuggestedWordInfo> suggestionsList = new ArrayList<>(); in getTypedWordAndPreviousSuggestions() local
196 suggestionsList.add(new SuggestedWordInfo(typedWord, SuggestedWordInfo.MAX_SCORE, in getTypedWordAndPreviousSuggestions()
207 suggestionsList.add(prevWordInfo); in getTypedWordAndPreviousSuggestions()
211 return suggestionsList; in getTypedWordAndPreviousSuggestions()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
DSuggestionSpanUtils.java75 final ArrayList<String> suggestionsList = new ArrayList<>(); in getTextWithSuggestionSpan() local
77 if (suggestionsList.size() >= SuggestionSpan.SUGGESTIONS_MAX_SIZE) { in getTextWithSuggestionSpan()
86 suggestionsList.add(word.toString()); in getTextWithSuggestionSpan()
90 suggestionsList.toArray(new String[suggestionsList.size()]), 0 /* flags */, in getTextWithSuggestionSpan()
/packages/apps/Contacts/src/com/android/contacts/group/
DSuggestedMemberListAdapter.java182 List<SuggestedMember> suggestionsList = new ArrayList<SuggestedMember>(); in performFiltering() local
228 suggestionsList.add(member); in performFiltering()
296 results.values = suggestionsList; in performFiltering()
303 List<SuggestedMember> suggestionsList = (List<SuggestedMember>) results.values; in publishResults() local
304 if (suggestionsList == null) { in publishResults()
312 for (SuggestedMember member : suggestionsList) { in publishResults()