Home
last modified time | relevance | path

Searched refs:onNotificationBatchPosted (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coalescer/
DGroupCoalescerTest.java105 verify(mListener, never()).onNotificationBatchPosted(anyList()); in testUngroupedNotificationsAreNotCoalesced()
123 verify(mListener, never()).onNotificationBatchPosted(anyList()); in testGroupedNotificationsAreCoalesced()
165 verify(mListener, never()).onNotificationBatchPosted(anyList()); in testCoalescedNotificationsArePosted()
171 verify(mListener).onNotificationBatchPosted(Arrays.asList( in testCoalescedNotificationsArePosted()
198 verify(mListener, never()).onNotificationBatchPosted(anyList()); in testCoalescedEventsThatAreLaterUngroupedAreEmittedImmediatelyAndNotLater()
208 inOrder.verify(mListener).onNotificationBatchPosted(Arrays.asList( in testCoalescedEventsThatAreLaterUngroupedAreEmittedImmediatelyAndNotLater()
222 verify(mListener, never()).onNotificationBatchPosted(anyList()); in testCoalescedEventsThatAreLaterUngroupedAreEmittedImmediatelyAndNotLater()
248 verify(mListener).onNotificationBatchPosted(Arrays.asList( in testUpdatingCoalescedNotifTriggersBatchEmit()
258 verify(mListener).onNotificationBatchPosted(Collections.singletonList( in testUpdatingCoalescedNotifTriggersBatchEmit()
280 inOrder.verify(mListener).onNotificationBatchPosted(Arrays.asList( in testRemovingCoalescedNotifTriggersBatchEmit()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coalescer/
DGroupCoalescer.java254 mHandler.onNotificationBatchPosted(events); in emitBatch()
326 void onNotificationBatchPosted(List<CoalescedEvent> events); in onNotificationBatchPosted() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DNotifCollection.java753 public void onNotificationBatchPosted(List<CoalescedEvent> events) {
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DNotifCollectionTest.java213 mNotifHandler.onNotificationBatchPosted(Arrays.asList( in testEventDispatchedWhenNotifBatchPosted()