• Home
  • Raw
  • Download

Lines Matching refs:suggestions

137         mSuggestionsView = (SuggestionsView) findViewById(R.id.suggestions);  in onCreate()
545 SuggestionCursor suggestions = getCurrentSuggestions(); in getCurrentSuggestions() local
546 if (suggestions == null) { in getCurrentSuggestions()
549 int count = suggestions.getCount(); in getCurrentSuggestions()
554 suggestions.moveTo(position); in getCurrentSuggestions()
555 return suggestions; in getCurrentSuggestions()
559 Suggestions suggestions = mSuggestionsAdapter.getSuggestions(); in getCurrentIncludedCorpora() local
560 return suggestions == null ? null : suggestions.getIncludedCorpora(); in getCurrentIncludedCorpora()
577 SuggestionCursor suggestions = getCurrentSuggestions(position); in launchSuggestion() local
578 if (suggestions == null) return false; in launchSuggestion()
584 getLogger().logSuggestionClick(position, suggestions, getCurrentIncludedCorpora(), in launchSuggestion()
588 getShortcutRepository().reportClick(suggestions, position); in launchSuggestion()
591 suggestions.moveTo(position); in launchSuggestion()
592 Intent intent = SuggestionUtils.getSuggestionIntent(suggestions, mAppSearchData); in launchSuggestion()
599 SuggestionCursor suggestions = getCurrentSuggestions(position); in clickedQuickContact() local
600 if (suggestions == null) return; in clickedQuickContact()
606 getLogger().logSuggestionClick(position, suggestions, getCurrentIncludedCorpora(), in clickedQuickContact()
610 getShortcutRepository().reportClick(suggestions, position); in clickedQuickContact()
631 SuggestionCursor suggestions = getCurrentSuggestions(position); in refineSuggestion() local
632 if (suggestions == null) { in refineSuggestion()
635 String query = suggestions.getSuggestionQuery(); in refineSuggestion()
641 getLogger().logSuggestionClick(position, suggestions, getCurrentIncludedCorpora(), in refineSuggestion()
714 Suggestions suggestions = getSuggestionsProvider().getSuggestions( in updateSuggestions() local
722 getLogger().logStart(latency, source, mCorpus, suggestions.getExpectedCorpora()); in updateSuggestions()
726 mSuggestionsAdapter.setSuggestions(suggestions); in updateSuggestions()
736 Suggestions suggestions = mSuggestionsAdapter.getSuggestions(); in updateInputMethodSuggestions()
737 if (suggestions == null) return; in updateInputMethodSuggestions()
738 SuggestionCursor cursor = suggestions.getPromoted(); in updateInputMethodSuggestions()