Home
last modified time | relevance | path

Searched refs:suggestions (Results 1 – 5 of 5) sorted by relevance

/development/samples/Support7Demos/src/com/example/android/supportv7/app/
DSearchActivity.java39 SearchRecentSuggestions suggestions = new SearchRecentSuggestions(this, in onCreate() local
41 suggestions.saveRecentQuery(query, null); in onCreate()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DSearchQueryResults.java98 SearchRecentSuggestions suggestions = new SearchRecentSuggestions(this, in doSearchQuery() local
100 suggestions.saveRecentQuery(queryString, null); in doSearchQuery()
DSearchInvoke.java236 SearchRecentSuggestions suggestions = new SearchRecentSuggestions(this, in clearSearchHistory() local
238 suggestions.clearHistory(); in clearSearchHistory()
/development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
DCandidateView.java239 public void setSuggestions(List<String> suggestions, boolean completions, in setSuggestions() argument
242 if (suggestions != null) { in setSuggestions()
243 mSuggestions = new ArrayList<String>(suggestions); in setSuggestions()
DSoftKeyboard.java570 public void setSuggestions(List<String> suggestions, boolean completions, in setSuggestions() argument
572 if (suggestions != null && suggestions.size() > 0) { in setSuggestions()
578 mCandidateView.setSuggestions(suggestions, completions, typedWordValid); in setSuggestions()