Home
last modified time | relevance | path

Searched refs:onAfterRenderList (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DStackCoordinatorTest.kt97 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testUpdateNotificationIcons()
104 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetRenderedListOnInteractor_iconContainerFlagOn()
111 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetRenderedListOnInteractor_footerFlagOn()
119 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_clearableAlerting()
130 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_isSensitiveStateActive_nonClearableAlerting()
139 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_clearableSilent()
150 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_isSensitiveStateActive_nonClearableSilent()
159 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_footerFlagOn_clearableAlerting()
174 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_footerFlagOn_isSensitiveStateActive_nonClearableAlerting()
184 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_footerFlagOn_clearableSilent()
[all …]
DDataStoreCoordinatorTest.kt68 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testUpdateDataStore_withOneEntry()
75 afterRenderListListener.onAfterRenderList( in testUpdateDataStore_withGroups()
112 afterRenderListListener.onAfterRenderList(listOf(), stackController) in notificationEntry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DDataStoreCoordinator.kt39 pipeline.addOnAfterRenderListListener { entries, _ -> onAfterRenderList(entries) } in <lambda>()
46 private fun onAfterRenderList(entries: List<ListEntry>) { in <lambda>() method
DStackCoordinator.kt54 pipeline.addOnAfterRenderListListener(::onAfterRenderList) in attach()
58 fun onAfterRenderList(entries: List<ListEntry>, controller: NotifStackController) = in onAfterRenderList() method in com.android.systemui.statusbar.notification.collection.coordinator.StackCoordinator
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
DOnAfterRenderListListener.java36 void onAfterRenderList( in onAfterRenderList() method
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/
DRenderStageManagerTest.kt165 verify(onAfterRenderListListener, times(1)).onAfterRenderList(any(), any()) in testDoesCallListenerWithEachGroupAndEntry()
185 verify(onAfterRenderListListener, times(1)).onAfterRenderList(any(), any()) in testDoesNotCallGroupAndEntryListenersIfTheListIsEmpty()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
DRenderStageManager.kt94 listener.onAfterRenderList(entries, stackController) in <lambda>()