Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DNotificationUiAdjustmentTest.java62 Notification.Action secondAction = in needReinflate_differentLabels() local
67 … createUiAdjustmentFromSmartActions("second", Collections.singletonList(secondAction)))) in needReinflate_differentLabels()
79 Notification.Action secondAction = in needReinflate_differentIcons() local
85 … createUiAdjustmentFromSmartActions("second", Collections.singletonList(secondAction)))) in needReinflate_differentIcons()
103 Notification.Action secondAction = in needReinflate_differentPendingIntent() local
109 … createUiAdjustmentFromSmartActions("second", Collections.singletonList(secondAction)))) in needReinflate_differentPendingIntent()
129 Notification.Action secondAction = in needReinflate_differentChoices() local
136 … createUiAdjustmentFromSmartActions("second", Collections.singletonList(secondAction)))) in needReinflate_differentChoices()
156 Notification.Action secondAction = in needReinflate_differentRemoteInputLabel() local
163 … createUiAdjustmentFromSmartActions("second", Collections.singletonList(secondAction)))) in needReinflate_differentRemoteInputLabel()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNotificationUiAdjustment.java95 Notification.Action secondAction = second.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/SystemUI/src/com/android/systemui/media/controls/domain/pipeline/
DMediaTimeoutListener.kt355 first.asSequence().zip(second.asSequence()).forEach { (firstAction, secondAction) -> in <lambda>() method
356 if (!areCustomActionsEqual(firstAction, secondAction)) { in <lambda>()
365 secondAction: PlaybackState.CustomAction in <lambda>()
368 firstAction.action != secondAction.action || in <lambda>()
369 firstAction.name != secondAction.name || in <lambda>()
370 firstAction.icon != secondAction.icon in <lambda>()
375 if ((firstAction.extras == null) != (secondAction.extras == null)) { in <lambda>()
380 if (firstAction.extras.get(key) != secondAction.extras.get(key)) { in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/
DDefaultScreenshotActionsProviderTest.kt78 val secondAction = actionButtonCaptor.secondValue in actionButtonsAccessed_beforeScreenshotCompleted_doesNothing() constant
80 secondAction.invoke() in actionButtonsAccessed_beforeScreenshotCompleted_doesNothing()
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/
DNotificationController.java181 @Nullable Action secondAction) { in createNotification() argument
197 if (secondAction != null) { in createNotification()
198 builder.addAction(secondAction); in createNotification()
/frameworks/base/core/tests/coretests/src/android/app/
DNotificationTest.java662 Notification.Action secondAction = makeNotificationAction(null); in testCallStyle_getSystemActions_forOngoingCallWithOtherActions() local
665 .addAction(secondAction); in testCallStyle_getSystemActions_forOngoingCallWithOtherActions()
673 assertEquals(secondAction, actions.get(2)); in testCallStyle_getSystemActions_forOngoingCallWithOtherActions()