Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DDismissibilityCoordinatorTest.kt65 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in testNotif()
81 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in testProviderCleared()
82 onBeforeRenderListListener.onBeforeRenderList(emptyList()) // provider should be updated in testProviderCleared()
95 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in testNonDismissableEntry()
112 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in testOngoingNotifWhenPhoneIsLocked()
129 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in testOngoingNotifWhenPhoneIsUnLocked()
147 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in testOngoingNondismissNotifWhenPhoneIsUnLocked()
171 onBeforeRenderListListener.onBeforeRenderList( in testMultipleEntries()
200 onBeforeRenderListListener.onBeforeRenderList(listOf(group)) in testNonDismissableEntryInGroup()
220 onBeforeRenderListListener.onBeforeRenderList(listOf(group)) in testOngoingEntryInGroupWhenPhoneIsLocked()
[all …]
DSensitiveContentCoordinatorTest.kt182 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction()
203 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction_sensitiveActive()
230 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceUnlocked_notifDoesNotNeedRedaction_shouldProtectNotification()
250 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction()
271 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction_sensitiveActive()
298 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceUnlocked_notifWouldNeedRedaction_shouldProtectNotification()
318 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceLocked_userAllowsPublicNotifs()
339 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceLocked_userAllowsPublicNotifs_sensitiveActive()
366 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceLocked_userAllowsPublicNotifs_shouldProtectNotification()
386 onBeforeRenderListListener.onBeforeRenderList(listOf(entry)) in onBeforeRenderList_deviceLocked_userDisallowsPublicNotifs_notifDoesNotNeedRedaction()
[all …]
DShadeEventCoordinatorTest.kt85 onBeforeRenderListListener.onBeforeRenderList(listOf()) in testUserCancelLastNotification()
93 onBeforeRenderListListener.onBeforeRenderList(listOf()) in testAppCancelLastNotification()
101 onBeforeRenderListListener.onBeforeRenderList(listOf(entry2)) in testUserCancelOneOfTwoNotifications()
109 onBeforeRenderListListener.onBeforeRenderList(listOf(entry2)) in testAppCancelOneOfTwoNotifications()
DRowAppearanceCoordinatorTest.kt87 beforeRenderListListener.onBeforeRenderList(listOf(entry1, entry2)) in testSetSystemExpandedOnlyOnFirst()
98 beforeRenderListListener.onBeforeRenderList(listOf(entry1, entry2)) in testSetSystemExpandedNeverIfMinimized()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/coordinator/
DRowAppearanceCoordinator.kt60 pipeline.addOnBeforeRenderListListener(::onBeforeRenderList) in <lambda>()
64 private fun onBeforeRenderList(list: List<ListEntry>) { in <lambda>() method
DShadeEventCoordinator.kt47 pipeline.addOnBeforeRenderListListener(this::onBeforeRenderList) in attach()
70 private fun onBeforeRenderList(entries: List<ListEntry>) { in onBeforeRenderList() method
DSensitiveContentCoordinator.kt98 override fun onBeforeRenderList(entries: List<ListEntry>) { in bindCoordinator() method in com.android.systemui.statusbar.notification.collection.coordinator.SensitiveContentCoordinatorImpl
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/listbuilder/
DOnBeforeRenderListListener.java33 void onBeforeRenderList(List<ListEntry> entries); in onBeforeRenderList() method
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/render/
DGroupExpansionManagerTest.kt134 beforeRenderListListener.onBeforeRenderList(entries) in <lambda>()
142 beforeRenderListListener.onBeforeRenderList(emptyList()) in <lambda>()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DConversationCoordinatorTest.kt164 beforeRenderListListener.onBeforeRenderList(listOf(importantChild, groupEntry)) in testPromotedImportantConversationsMakesSummaryUnimportant()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/
DShadeListBuilderTest.java1008 inOrder.verify(mOnBeforeRenderListListener).onBeforeRenderList(anyList()); in testListenersAndPluggablesAreFiredInOrder()
2688 public void onBeforeRenderList(List<ListEntry> list) { in onBeforeRenderList() method in ShadeListBuilderTest.RecordingOnBeforeRenderListener
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
DShadeListBuilder.java1462 listener.onBeforeRenderList(entries); in dispatchOnBeforeRenderList()