Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationUiAdjustmentTest.java62 Notification.Action firstAction = in needReinflate_differentLabels() local
68 createUiAdjustmentFromSmartActions("first", Collections.singletonList(firstAction)), in needReinflate_differentLabels()
80 Notification.Action firstAction = in needReinflate_differentIcons() local
87 createUiAdjustmentFromSmartActions("first", Collections.singletonList(firstAction)), in needReinflate_differentIcons()
102 Notification.Action firstAction = in needReinflate_differentPendingIntent() local
110 createUiAdjustmentFromSmartActions("first", Collections.singletonList(firstAction)), in needReinflate_differentPendingIntent()
128 Notification.Action firstAction = in needReinflate_differentChoices() local
138 createUiAdjustmentFromSmartActions("first", Collections.singletonList(firstAction)), in needReinflate_differentChoices()
156 Notification.Action firstAction = in needReinflate_differentRemoteInputLabel() local
166 createUiAdjustmentFromSmartActions("first", Collections.singletonList(firstAction)), in needReinflate_differentRemoteInputLabel()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationUiAdjustment.java94 Notification.Action firstAction = first.get(i); in areDifferent() local
97 if (!TextUtils.equals(firstAction.title, secondAction.title)) { in areDifferent()
101 if (areDifferent(firstAction.getIcon(), secondAction.getIcon())) { in areDifferent()
105 if (!Objects.equals(firstAction.actionIntent, secondAction.actionIntent)) { in areDifferent()
109 if (areDifferent(firstAction.getRemoteInputs(), secondAction.getRemoteInputs())) { in areDifferent()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
DNotificationController.java180 private void createNotification(@NonNull PrintJobInfo printJob, @Nullable Action firstAction, in createNotification() argument
193 if (firstAction != null) { in createNotification()
194 builder.addAction(firstAction); in createNotification()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DSmartReplyViewTest.java1022 Button firstAction = ((Button) mView.getChildAt(1)); in testMeasure_choicesAndActionsPrioritizeActions() local
/frameworks/base/core/java/android/app/
DNotification.java9350 final Action firstAction = answerAction == null ? null : negativeAction; in getActionsListWithSystemActions() local
9356 if (firstAction != null) { in getActionsListWithSystemActions()
9357 resultActions.add(firstAction); in getActionsListWithSystemActions()