Home
last modified time | relevance | path

Searched refs:onBeforeRenderList (Results 1 – 11 of 11) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DDismissibilityCoordinatorTest.kt65 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
81 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
95 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
112 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
129 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
147 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
171 onBeforeRenderListListener.onBeforeRenderList(
200 onBeforeRenderListListener.onBeforeRenderList(listOf(group))
220 onBeforeRenderListListener.onBeforeRenderList(listOf(group))
240 onBeforeRenderListListener.onBeforeRenderList(listOf(group))
[all …]
H A DSensitiveContentCoordinatorTest.kt99 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
117 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
135 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
153 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
171 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
189 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
209 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
231 onBeforeRenderListListener.onBeforeRenderList(listOf(entry))
H A DShadeEventCoordinatorTest.kt85 onBeforeRenderListListener.onBeforeRenderList(listOf())
93 onBeforeRenderListListener.onBeforeRenderList(listOf())
101 onBeforeRenderListListener.onBeforeRenderList(listOf(entry2))
109 onBeforeRenderListListener.onBeforeRenderList(listOf(entry2))
H A DRowAppearanceCoordinatorTest.kt87 beforeRenderListListener.onBeforeRenderList(listOf(entry1, entry2))
98 beforeRenderListListener.onBeforeRenderList(listOf(entry1, entry2))
H A DConversationCoordinatorTest.kt136 beforeRenderListListener.onBeforeRenderList(listOf(entry, groupEntry))
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
H A DRowAppearanceCoordinator.kt52 pipeline.addOnBeforeRenderListListener(::onBeforeRenderList)
56 private fun onBeforeRenderList(list: List<ListEntry>) { regex
H A DShadeEventCoordinator.kt47 pipeline.addOnBeforeRenderListListener(this::onBeforeRenderList)
70 private fun onBeforeRenderList(entries: List<ListEntry>) { regex
H A DSensitiveContentCoordinator.kt69 override fun onBeforeRenderList(entries: List<ListEntry>) {
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
H A DOnBeforeRenderListListener.java33 void onBeforeRenderList(List<ListEntry> entries); in onBeforeRenderList() method
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
H A DShadeListBuilderTest.java1011 inOrder.verify(mOnBeforeRenderListListener).onBeforeRenderList(anyList()); in testListenersAndPluggablesAreFiredInOrder()
2719 public void onBeforeRenderList(List<ListEntry> list) { in onBeforeRenderList() method in ShadeListBuilderTest.RecordingOnBeforeRenderListener
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DShadeListBuilder.java1461 listener.onBeforeRenderList(entries); in dispatchOnBeforeRenderList()