Home
last modified time | relevance | path

Searched refs:mCollectionListener (Results 1 – 8 of 8) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
H A DNotifCollectionTest.java152 mListenerInOrder = inOrder(mCollectionListener); in setUp()
163 mCollection.addCollectionListener(mCollectionListener); in setUp()
203 clearInvocations(mCollectionListener); in testEventDispatchedWhenNotifBatchPosted()
275 clearInvocations(mCollectionListener); in testEventDispatchedWhenNotifRemoved()
279 clearInvocations(mCollectionListener); in testEventDispatchedWhenNotifRemoved()
1352 verify(mCollectionListener).onEntryAdded(eq(entry)); in testSecondPostCallsUpdateWithTrue()
1353 verify(mCollectionListener).onRankingApplied(); in testSecondPostCallsUpdateWithTrue()
1361 verify(mCollectionListener).onEntryAdded((entry)); in testSecondPostCallsUpdateWithTrue()
1373 verify(mCollectionListener).onRankingApplied(); in testInternalNotifUpdaterCallsUpdate()
1381 verify(mCollectionListener).onRankingApplied(); in testInternalNotifUpdaterCallsUpdate()
[all …]
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DPreparationCoordinatorTest.java118 mCollectionListener.onEntryInit(mEntry); in setUp()
149 mCollectionListener.onEntryAdded(mEntry); in testInflatesNewNotification()
162 mCollectionListener.onEntryAdded(mEntry); in testRebindsInflatedNotificationsOnUpdate()
168 mCollectionListener.onEntryUpdated(mEntry); in testRebindsInflatedNotificationsOnUpdate()
181 mCollectionListener.onEntryAdded(mEntry); in testDoesntFilterInflatedNotifs()
212 mCollectionListener.onEntryInit(summary); in testCutoffGroupChildrenNotInflated()
214 mCollectionListener.onEntryInit(entry); in testCutoffGroupChildrenNotInflated()
217 mCollectionListener.onEntryAdded(summary); in testCutoffGroupChildrenNotInflated()
219 mCollectionListener.onEntryAdded(entry); in testCutoffGroupChildrenNotInflated()
360 mCollectionListener.onEntryInit(entry); in fireAddEvents()
[all …]
H A DHeadsUpCoordinatorTest.java63 private NotifCollectionListener mCollectionListener; field in HeadsUpCoordinatorTest
108 mCollectionListener = notifCollectionCaptor.getValue(); in setUp()
185 mCollectionListener.onEntryAdded(mEntry); in testShowHUNOnInflationFinished()
200 mCollectionListener.onEntryAdded(mEntry); in testNoHUNOnInflationFinished()
214 mCollectionListener.onEntryRemoved(mEntry, /* cancellation reason */ 0); in testOnEntryRemovedRemovesHeadsUpNotification()
H A DVisualStabilityCoordinatorTest.java61 private NotifCollectionListener mCollectionListener; field in VisualStabilityCoordinatorTest
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/
H A DNotifRemoteViewCacheImpl.java43 collection.addCollectionListener(mCollectionListener); in NotifRemoteViewCacheImpl()
95 private final NotifCollectionListener mCollectionListener = new NotifCollectionListener() { field in NotifRemoteViewCacheImpl
H A DNotifBindPipeline.java93 collection.addCollectionListener(mCollectionListener); in NotifBindPipeline()
210 private final NotifCollectionListener mCollectionListener = new NotifCollectionListener() { field in NotifBindPipeline
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/interruption/
H A DHeadsUpController.java79 entryManager.addCollectionListener(mCollectionListener); in attach()
83 private NotifCollectionListener mCollectionListener = new NotifCollectionListener() { field in HeadsUpController
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DRemoteInputCoordinator.kt94 pipeline.addCollectionListener(mCollectionListener)
97 val mCollectionListener = object : NotifCollectionListener { regex