Searched refs:mRemoveInterceptor (Results 1 – 4 of 4) sorted by relevance
118 private NotificationRemoveInterceptor mRemoveInterceptor; field in BubbleControllerTest194 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()
95 private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManager131 mRemoveInterceptor = interceptor; in setNotificationRemoveInterceptor()270 if (mRemoveInterceptor != null in removeNotificationInternal()271 && mRemoveInterceptor.onNotificationRemoveRequested(key, reason)) { in removeNotificationInternal()
117 @Mock private NotificationRemoveInterceptor mRemoveInterceptor; field in NotificationEntryManagerTest247 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()
246 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in BubbleController()431 private final NotificationRemoveInterceptor mRemoveInterceptor = field in BubbleController