Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DInflatedSmartRepliesTest.java49 import com.android.systemui.statusbar.policy.SmartReplyView.SmartActions;
432 new SmartActions(leftActions, false /* fromAssistant */), in areSuggestionsSimilar_trueForSimilar()
437 new SmartActions(rightActions, false /* fromAssistant */), in areSuggestionsSimilar_trueForSimilar()
463 new SmartActions(leftActions, false /* fromAssistant */), in areSuggestionsSimilar_falseForDifferentReplies()
468 new SmartActions(rightActions, false /* fromAssistant */), in areSuggestionsSimilar_falseForDifferentReplies()
494 new SmartActions(leftActions, false /* fromAssistant */), in areSuggestionsSimilar_falseForDifferentActions()
499 new SmartActions(rightActions, false /* fromAssistant */), in areSuggestionsSimilar_falseForDifferentActions()
525 new SmartActions(leftActions, false /* fromAssistant */), in areSuggestionsSimilar_falseForDifferentSuppressedActions()
530 new SmartActions(rightActions, false /* fromAssistant */), in areSuggestionsSimilar_falseForDifferentSuppressedActions()
556 new SmartActions(leftActions, false /* fromAssistant */), in areSuggestionsSimilar_falseForDifferentPhishing()
[all …]
H A DSmartReplyViewTest.java524 SmartReplyView.SmartActions smartActions = new SmartReplyView.SmartActions( in setSmartActions()
552 SmartReplyView.SmartActions smartActions = new SmartReplyView.SmartActions( in setSmartRepliesAndActions()
615 SmartReplyView.SmartActions smartActions = new SmartReplyView.SmartActions(actions, false); in buildExpectedView()
923 SmartReplyView.SmartActions smartActions = new SmartReplyView.SmartActions(actions, false); in testInflateActionButton_smartActionIconSingleLineSizeForTwoLineButton()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DInflatedSmartReplyState.kt19 import com.android.systemui.statusbar.policy.SmartReplyView.SmartActions
27 val smartActions: SmartActions?,
H A DSmartReplyStateInflater.kt48 import com.android.systemui.statusbar.policy.SmartReplyView.SmartActions
207 var smartActions: SmartActions? = when {
209 SmartActions(appGeneratedSmartActions, false /* fromAssistant */)
235 smartActions = SmartActions(systemGeneratedActions, true /* fromAssistant */)
276 smartActions: SmartActions,
294 smartActions: SmartActions,
330 smartActions: SmartActions,
H A DSmartReplyView.java822 public static class SmartActions { class in SmartReplyView
827 public SmartActions(@NonNull List<Notification.Action> actions, boolean fromAssistant) { in SmartActions() method in SmartReplyView.SmartActions
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotificationContentView.java1390 SmartReplyView.SmartActions smartActions = state.getSmartActions(); in applySmartReplyView()