/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | ArchiveTest.java | 22 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 97 mArchive.record(sbn, REASON_CANCEL); in testRecordAndRead() 109 mArchive.record(getNotification("pkg", 1, UserHandle.of(USER_SYSTEM)), REASON_CANCEL); in testCrossUser() 110 mArchive.record(getNotification("pkg", 2, UserHandle.of(USER_CURRENT)), REASON_CANCEL); in testCrossUser() 111 mArchive.record(getNotification("pkg", 3, UserHandle.of(USER_ALL)), REASON_CANCEL); in testCrossUser() 112 mArchive.record(getNotification("pkg", 4, UserHandle.of(USER_NULL)), REASON_CANCEL); in testCrossUser() 128 mArchive.record(sbn, REASON_CANCEL); in testRecordAndRead_overLimit() 149 mArchive.record(sbn, REASON_CANCEL); in testDoesNotRecordIfHistoryDisabled() 169 mArchive.record(sbn, REASON_CANCEL); in testRemovesEntriesWhenHistoryDisabled() 189 mArchive.record(sbn0, REASON_CANCEL); in testRemoveChannelNotifications() [all …]
|
D | NotificationRecordLoggerTest.java | 21 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 220 REASON_CANCEL, DISMISSAL_OTHER)); in testOtherNotificationCancel()
|
D | NotificationManagerServiceTest.java | 103 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 2625 notif.getUserId(), REASON_CANCEL); in testCancelAllNotifications_CancelsNoClearFlag() 3509 Notification.FLAG_ONGOING_EVENT, notif.getUserId(), REASON_CANCEL); in testCancelAllNotificationsInt_CancelsNoClearFlagOnGoing() 3537 notif.getUserId(), REASON_CANCEL); in testCancelAllNotificationsInt_CancelsOngoingFlag() 11095 notif.getUserId(), REASON_CANCEL);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | ShadeEventCoordinatorTest.kt | 19 import android.service.notification.NotificationListenerService.REASON_CANCEL 82 notifCollectionListener.onEntryRemoved(entry1, REASON_CANCEL) in testUserCancelLastNotification() 100 notifCollectionListener.onEntryRemoved(entry1, REASON_CANCEL) in testUserCancelOneOfTwoNotifications()
|
D | NotificationStatsLoggerCoordinatorTest.kt | 20 import android.service.notification.NotificationListenerService.REASON_CANCEL 57 collectionListener.onEntryRemoved(mockEntry("key"), REASON_CANCEL) in onEntryAdded_loggerCalled()
|
D | MediaCoordinatorTest.java | 178 mListener.onEntryRemoved(mMediaEntry, NotificationListenerService.REASON_CANCEL); in inflateMediaNotificationIconsMediaEnabled_old() 208 mListener.onEntryRemoved(mMediaEntry, NotificationListenerService.REASON_CANCEL); in inflateMediaNotificationIconsMediaEnabled_new()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/ |
D | BiometricNotificationLoggerTest.java | 120 NotificationListenerService.REASON_CANCEL); in testFaceNotification_dismissed() 131 NotificationListenerService.REASON_CANCEL); in testFingerprintNotification_dismissed()
|
/frameworks/base/services/core/java/com/android/server/biometrics/ |
D | BiometricNotificationLogger.java | 90 case NotificationListenerService.REASON_CANCEL: in onNotificationRemoved()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/ |
D | RemoteInputCoordinator.kt | 22 import android.service.notification.NotificationListenerService.REASON_CANCEL 161 if (reason == REASON_CANCEL || reason == REASON_CLICK) { in onEntryRemoved()
|
D | ShadeEventCoordinator.kt | 56 reason == NotificationListenerService.REASON_CANCEL in onEntryRemoved()
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | NotificationRecordLogger.java | 20 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 241 if (reason == REASON_CANCEL) { in fromCancelReason()
|
D | NotificationManagerService.java | 119 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 1377 userId, REASON_CANCEL, nv.rank, nv.count, /* listener= */ null); 8409 if (mReason == REASON_CANCEL 9747 case REASON_CANCEL: 10227 || reason != REASON_CANCEL)) {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/ |
D | NotifCollection.java | 22 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 859 || entry.mCancellationReason == REASON_CANCEL; 1166 REASON_CANCEL,
|
/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/ |
D | DataManagerTest.java | 521 NotificationListenerService.REASON_CANCEL); in testUncacheShortcutsWhenNotificationsDismissed() 716 NotificationListenerService.REASON_CANCEL); in testGetConversation_trackActiveConversations() 1211 NotificationListenerService.REASON_CANCEL); in testUncacheOldestCachedShortcut() 1587 NotificationListenerService.REASON_CANCEL); in testNotificationRemoved() 1608 NotificationListenerService.REASON_CANCEL); 1638 NotificationListenerService.REASON_CANCEL);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/notifcollection/ |
D | NotifCollectionLogger.kt | 42 NotificationListenerService.REASON_CANCEL -> "REASON_CANCEL" in cancellationReasonDebugString()
|
/frameworks/base/core/java/android/service/notification/ |
D | NotificationListenerService.java | 233 public static final int REASON_CANCEL = 2; field in NotificationListenerService 291 REASON_CANCEL,
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | BubbleController.java | 21 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 2041 mSysuiProxy.notifyRemoveNotification(bubble.getKey(), REASON_CANCEL);
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/ |
D | NotifCollectionTest.java | 24 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 676 mNoMan.retractNotif(notif.sbn, REASON_CANCEL); in testNMSReportsUserDismissalAlwaysRemovesNotif()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | ExpandableNotificationRow.java | 20 import static android.service.notification.NotificationListenerService.REASON_CANCEL; 1621 mOnUserInteractionCallback.registerFutureDismissal(mEntry, REASON_CANCEL).run();
|
/frameworks/base/proto/src/metrics_constants/ |
D | metrics_constants.proto | 111 REASON_CANCEL = 2; enumerator
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/frameworks/base/core/api/ |
D | current.txt | 41210 field public static final int REASON_CANCEL = 2; // 0x2
|