Home
last modified time | relevance | path

Searched refs:notifList (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
H A DRenderStageManager.kt49 private fun onRenderList(notifList: List<ListEntry>) {
52 viewRenderer.onRenderList(notifList)
53 dispatchOnAfterRenderList(viewRenderer, notifList)
54 dispatchOnAfterRenderGroups(viewRenderer, notifList)
55 dispatchOnAfterRenderEntries(viewRenderer, notifList)
H A DShadeViewManager.kt69 override fun onRenderList(notifList: List<ListEntry>) {
71 viewDiffer.applySpec(specBuilder.buildNodeSpec(rootController, notifList))
H A DNodeSpecBuilder.kt48 notifList: List<ListEntry>
65 for (entry in notifList) {
H A DNotifViewRenderer.kt37 fun onRenderList(notifList: List<ListEntry>)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DShadeListBuilder.java1059 private void assignIndexes(List<ListEntry> notifList) { in assignIndexes() argument
1060 if (notifList.size() == 0) return; in assignIndexes()
1061 NotifSection currentSection = requireNonNull(notifList.get(0).getSection()); in assignIndexes()
1063 for (int i = 0; i < notifList.size(); i++) { in assignIndexes()
1064 final ListEntry entry = notifList.get(i); in assignIndexes()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/render/
H A DRenderStageManagerTest.kt211 override fun onRenderList(notifList: List<ListEntry>) {}