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.java72 @Mock private NotificationEntryManager mNotificationEntryManager; field in SmartReplyControllerTest
80 mNotificationEntryManager); in setUp()
82 mSmartReplyController = new SmartReplyController(mNotificationEntryManager, in setUp()
89 mNotificationEntryManager, () -> mock(ShadeController.class), in setUp()
110 verify(mNotificationEntryManager).updateNotification( in testSendSmartReply_updatesRemoteInput()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bubbles/
DBubbleControllerTest.java96 private NotificationEntryManager mNotificationEntryManager; field in BubbleControllerTest
151 mDependency.injectTestDependency(NotificationEntryManager.class, mNotificationEntryManager); in setUp()
167 when(mNotificationEntryManager.getNotificationData()).thenReturn(mNotificationData); in setUp()
196 verify(mNotificationEntryManager, atLeastOnce()) in setUp()
200 verify(mNotificationEntryManager, atLeastOnce()) in setUp()
225 verify(mNotificationEntryManager).updateNotifications(); in testRemoveBubble()
231 verify(mNotificationEntryManager, times(2)).updateNotifications(); in testRemoveBubble()
251 verify(mNotificationEntryManager, times(1)).performRemoveNotification( in testRemoveBubble_withDismissedNotif()
259 verify(mNotificationEntryManager, times(1)).updateNotifications(); in testDismissStack()
262 verify(mNotificationEntryManager, times(2)).updateNotifications(); in testDismissStack()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/bubbles/
DBubbleController.java138 private final NotificationEntryManager mNotificationEntryManager; field in BubbleController
261 mNotificationEntryManager = Dependency.get(NotificationEntryManager.class); in BubbleController()
262 mNotificationEntryManager.addNotificationEntryListener(mEntryListener); in BubbleController()
263 mNotificationEntryManager.setNotificationRemoveInterceptor(mRemoveInterceptor); in BubbleController()
352 mNotificationEntryManager.getNotificationData(); in restoreBubbles()
457 NotificationEntry entry = mNotificationEntryManager.getNotificationData().get(key); in isBubbleNotificationSuppressedFromShade()
540 NotificationEntry entry = mNotificationEntryManager.getNotificationData().get(key);
581 mNotificationEntryManager.updateNotifications();
621 mNotificationEntryManager.updateNotifications(); in handleSummaryRemovalInterception()
711 mNotificationEntryManager.performRemoveNotification(
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DNotificationGroupAlertTransferHelperTest.java63 @Mock private NotificationEntryManager mNotificationEntryManager; field in NotificationGroupAlertTransferHelperTest
76 when(mNotificationEntryManager.getPendingNotificationsIterator()) in setup()
86 mGroupAlertTransferHelper.bind(mNotificationEntryManager, mGroupManager); in setup()
87 verify(mNotificationEntryManager).addNotificationEntryListener(mListenerCaptor.capture()); in setup()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java276 @Inject Lazy<NotificationEntryManager> mNotificationEntryManager; field in Dependency
472 mProviders.put(NotificationEntryManager.class, mNotificationEntryManager::get); in start()