Searched refs:mRemoveInterceptor (Results 1 – 4 of 4) sorted by relevance
129 private NotificationRemoveInterceptor mRemoveInterceptor; field in BubbleControllerTest202 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()
99 private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManager136 mRemoveInterceptor = interceptor; in setNotificationRemoveInterceptor()275 if (mRemoveInterceptor != null in removeNotificationInternal()276 && mRemoveInterceptor.onNotificationRemoveRequested(key, reason)) { in removeNotificationInternal()
119 @Mock private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManagerTest249 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()
263 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in BubbleController()536 private final NotificationRemoveInterceptor mRemoveInterceptor = field in BubbleController