Searched refs:mCollectionListener (Results 1 – 6 of 6) sorted by relevance
130 @Spy private RecordingCollectionListener mCollectionListener; field in NotifCollectionTest164 mListenerInOrder = inOrder(mCollectionListener); in setUp()177 mCollection.addCollectionListener(mCollectionListener); in setUp()235 final NotificationEntry entry = mCollectionListener.getEntry(notif1.key); in testEventDispatchedWhenNotifPosted()237 mListenerInOrder.verify(mCollectionListener).onEntryInit(entry); in testEventDispatchedWhenNotifPosted()238 mListenerInOrder.verify(mCollectionListener).onEntryAdded(entry); in testEventDispatchedWhenNotifPosted()239 mListenerInOrder.verify(mCollectionListener).onRankingApplied(); in testEventDispatchedWhenNotifPosted()249 NotificationEntry entry = mCollectionListener.getEntry(notif.key); in testCancelNonExistingNotification()262 clearInvocations(mCollectionListener); in testEventDispatchedWhenNotifBatchPosted()285 verify(mCollectionListener, times(2)).onEntryAdded(mEntryCaptor.capture()); in testEventDispatchedWhenNotifBatchPosted()[all …]
94 private NotifCollectionListener mCollectionListener; field in PreparationCoordinatorTest167 mCollectionListener = mCollectionListenerCaptor.getValue(); in setUp()173 mCollectionListener.onEntryInit(mEntry); in setUp()204 mCollectionListener.onEntryInit(mEntry); in testInflatesNewNotification()217 mCollectionListener.onEntryInit(mEntry); in testRebindsInflatedNotificationsOnUpdate()223 mCollectionListener.onEntryUpdated(mEntry); in testRebindsInflatedNotificationsOnUpdate()236 mCollectionListener.onEntryInit(mEntry); in testEntrySmartReplyAdditionWillRebindViews()255 mCollectionListener.onEntryInit(mEntry); in testEntryChangedToMinimizedSectionWillRebindViews()277 mCollectionListener.onEntryInit(mEntry); in testMinimizedEntryMovedIntoGroupWillRebindViews()298 mCollectionListener.onEntryInit(mEntry); in testEntryRankChangeWillNotRebindViews()[all …]
43 collection.addCollectionListener(mCollectionListener); in NotifRemoteViewCacheImpl()95 private final NotifCollectionListener mCollectionListener = new NotifCollectionListener() { field in NotifRemoteViewCacheImpl
89 collection.addCollectionListener(mCollectionListener); in NotifBindPipeline()204 private final NotifCollectionListener mCollectionListener = new NotifCollectionListener() { field in NotifBindPipeline
72 private final NotifCollectionListener mCollectionListener = new NotifCollectionListener() { field in MediaCoordinator168 pipeline.addCollectionListener(mCollectionListener); in attach()
101 pipeline.addCollectionListener(mCollectionListener) in getLifetimeExtenders()108 val mCollectionListener = object : NotifCollectionListener { constant