Searched refs:secondAction (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/ |
D | NotificationUiAdjustmentTest.java | 62 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/ |
D | NotificationUiAdjustment.java | 95 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/ |
D | MediaTimeoutListener.kt | 355 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/ |
D | DefaultScreenshotActionsProviderTest.kt | 78 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/ |
D | NotificationController.java | 181 @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/ |
D | NotificationTest.java | 662 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()
|