Home
last modified time | relevance | path

Searched refs:launchSuggestion (Results 1 – 6 of 6) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/suggestions/
DSuggestionPreference.java65 holder.itemView.setOnClickListener(v -> launchSuggestion()); in onBindViewHolder()
68 containerView.setOnClickListener(v -> launchSuggestion()); in onBindViewHolder()
75 itemContainerView.setOnClickListener(v -> launchSuggestion()); in onBindViewHolder()
89 private void launchSuggestion() { in launchSuggestion() method in SuggestionPreference
92 mSuggestionControllerMixin.launchSuggestion(mSuggestion); in launchSuggestion()
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
DSearchActivity.java410 private boolean launchSuggestion(SuggestionsAdapter<?> adapter, long id) { in launchSuggestion() method in SearchActivity
422 launchSuggestion(suggestion.getCursor(), suggestion.getPosition()); in launchSuggestion()
427 protected void launchSuggestion(SuggestionCursor suggestions, int position) { in launchSuggestion() method in SearchActivity
497 launchSuggestion(adapter, id); in onSuggestionClicked()
/packages/apps/Car/Settings/src/com/android/car/settings/suggestions/
DSuggestionPreference.java42 void launchSuggestion(SuggestionPreference preference); in launchSuggestion() method
90 holder.itemView.setOnClickListener(v -> mCallback.launchSuggestion(this)); in onBindViewHolder()
DSuggestionsPreferenceController.java197 public void launchSuggestion(SuggestionPreference preference) { in launchSuggestion() method in SuggestionsPreferenceController
203 mSuggestionController.launchSuggestion(suggestion); in launchSuggestion()
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/suggestions/
DSuggestionsPreferenceControllerTest.java208 mController.launchSuggestion(preference); in launchSuggestion_sendsPendingIntent()
220 mController.launchSuggestion(preference); in launchSuggestion_callsSuggestionControllerLaunch()
222 verify(mSuggestionController).launchSuggestion(suggestion); in launchSuggestion_callsSuggestionControllerLaunch()
DSuggestionPreferenceTest.java114 verify(mCallback).launchSuggestion(mPref); in onClick_callsLaunchSuggestion()