Home
last modified time | relevance | path

Searched refs:mNotificationEntryManager (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
DSmartReplyControllerTest.java71 @Mock private NotificationEntryManager mNotificationEntryManager; field in SmartReplyControllerTest
78 mNotificationEntryManager); in setUp()
80 mSmartReplyController = new SmartReplyController(mNotificationEntryManager, in setUp()
87 mNotificationEntryManager, () -> mock(ShadeController.class), in setUp()
107 verify(mNotificationEntryManager).updateNotification( in testSendSmartReply_updatesRemoteInput()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java95 private NotificationEntryManager mNotificationEntryManager; field in BubbleControllerTest
142 mDependency.injectTestDependency(NotificationEntryManager.class, mNotificationEntryManager); in setUp()
168 when(mNotificationEntryManager.getNotificationData()).thenReturn(mNotificationData); in setUp()
188 verify(mNotificationEntryManager, atLeastOnce()) in setUp()
192 verify(mNotificationEntryManager, atLeastOnce()) in setUp()
216 verify(mNotificationEntryManager).updateNotifications(); in testRemoveBubble()
222 verify(mNotificationEntryManager, times(2)).updateNotifications(); in testRemoveBubble()
242 verify(mNotificationEntryManager, times(1)).performRemoveNotification( in testRemoveBubble_withDismissedNotif()
250 verify(mNotificationEntryManager, times(1)).updateNotifications(); in testDismissStack()
252 verify(mNotificationEntryManager, times(2)).updateNotifications(); in testDismissStack()
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationGroupAlertTransferHelperTest.java63 @Mock private NotificationEntryManager mNotificationEntryManager; field in NotificationGroupAlertTransferHelperTest
78 when(mNotificationEntryManager.getPendingNotificationsIterator()) in setup()
88 mGroupAlertTransferHelper.bind(mNotificationEntryManager, mGroupManager); in setup()
89 verify(mNotificationEntryManager).addNotificationEntryListener(mListenerCaptor.capture()); in setup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java140 private final NotificationEntryManager mNotificationEntryManager; field in BubbleController
244 mNotificationEntryManager = Dependency.get(NotificationEntryManager.class); in BubbleController()
245 mNotificationEntryManager.addNotificationEntryListener(mEntryListener); in BubbleController()
246 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in BubbleController()
459 mNotificationEntryManager.updateNotifications();
551 mNotificationEntryManager.performRemoveNotification(bubble.entry.notification,
585 mNotificationEntryManager.updateNotifications();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java283 @Inject Lazy<NotificationEntryManager> mNotificationEntryManager; field in Dependency
468 mProviders.put(NotificationEntryManager.class, mNotificationEntryManager::get); in start()