Home
last modified time | relevance | path

Searched refs:mRemoveInterceptor (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java118 private NotificationRemoveInterceptor mRemoveInterceptor; field in BubbleControllerTest
194 mRemoveInterceptor = mRemoveInterceptorCaptor.getValue(); in setUp()
504 mRemoveInterceptor.onNotificationRemoveRequested(mRow.getEntry().key, REASON_APP_CANCEL); in testExpandStackAndSelectBubble_removedFirst()
566 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in testRemoveBubble_succeeds_appCancel()
582 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in removeBubble_fails_clearAll()
603 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in removeBubble_fails_userDismissNotif()
629 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in removeBubble_succeeds_userDismissBubble_userDimissNotif()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationEntryManager.java95 private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManager
131 mRemoveInterceptor = interceptor; in setNotificationRemoveInterceptor()
270 if (mRemoveInterceptor != null in removeNotificationInternal()
271 && mRemoveInterceptor.onNotificationRemoveRequested(key, reason)) { in removeNotificationInternal()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationEntryManagerTest.java117 @Mock private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManagerTest
247 mEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in setUp()
555 when(mRemoveInterceptor.onNotificationRemoveRequested(eq(mEntry.key), anyInt())) in testRemoveInterceptor_interceptsDontGetRemoved()
574 when(mRemoveInterceptor.onNotificationRemoveRequested(eq(mEntry.key), anyInt())) in testRemoveInterceptor_notInterceptedGetsRemoved()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java246 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in BubbleController()
431 private final NotificationRemoveInterceptor mRemoveInterceptor = field in BubbleController