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.java129 private NotificationRemoveInterceptor mRemoveInterceptor; field in BubbleControllerTest
202 mRemoveInterceptor = mRemoveInterceptorCaptor.getValue(); in setUp()
512 mRemoveInterceptor.onNotificationRemoveRequested(mRow.getEntry().key, REASON_APP_CANCEL); in testExpandStackAndSelectBubble_removedFirst()
575 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in testRemoveBubble_succeeds_appCancel()
591 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in removeBubble_fails_clearAll()
612 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in removeBubble_fails_userDismissNotif()
638 boolean intercepted = mRemoveInterceptor.onNotificationRemoveRequested( in removeBubble_succeeds_userDismissBubble_userDimissNotif()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DNotificationEntryManager.java99 private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManager
136 mRemoveInterceptor = interceptor; in setNotificationRemoveInterceptor()
275 if (mRemoveInterceptor != null in removeNotificationInternal()
276 && mRemoveInterceptor.onNotificationRemoveRequested(key, reason)) { in removeNotificationInternal()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
DNotificationEntryManagerTest.java119 @Mock private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManagerTest
249 mEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in setUp()
558 when(mRemoveInterceptor.onNotificationRemoveRequested(eq(mEntry.key), anyInt())) in testRemoveInterceptor_interceptsDontGetRemoved()
577 when(mRemoveInterceptor.onNotificationRemoveRequested(eq(mEntry.key), anyInt())) in testRemoveInterceptor_notInterceptedGetsRemoved()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java263 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in BubbleController()
536 private final NotificationRemoveInterceptor mRemoveInterceptor = field in BubbleController