Home
last modified time | relevance | path

Searched refs:stackController (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/collection/coordinator/
DStackCoordinatorTest.kt69 @Mock private lateinit var stackController: NotifStackController variable in com.android.systemui.statusbar.notification.collection.coordinator.StackCoordinatorTest
97 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()
120 verify(stackController).setNotifStats(NotifStats(1, false, true, false, false)) in testSetNotificationStats_clearableAlerting()
130 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_isSensitiveStateActive_nonClearableAlerting()
131 verify(stackController).setNotifStats(NotifStats(1, true, false, false, false)) in testSetNotificationStats_isSensitiveStateActive_nonClearableAlerting()
139 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testSetNotificationStats_clearableSilent()
140 verify(stackController).setNotifStats(NotifStats(1, false, false, false, true)) in testSetNotificationStats_clearableSilent()
[all …]
DDataStoreCoordinatorTest.kt52 @Mock private lateinit var stackController: NotifStackController variable in com.android.systemui.statusbar.notification.collection.coordinator.DataStoreCoordinatorTest
68 afterRenderListListener.onAfterRenderList(listOf(entry), stackController) in testUpdateDataStore_withOneEntry()
90 stackController in testUpdateDataStore_withGroups()
112 afterRenderListListener.onAfterRenderList(listOf(), stackController) in notificationEntry()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/render/
DShadeViewManager.kt41 @Assisted private val stackController: NotifStackController, constant
75 override fun getStackController(): NotifStackController = stackController in getStackController()
89 stackController: NotifStackController in getStackController()
DRenderStageManager.kt92 val stackController = viewRenderer.getStackController() in <lambda>() constant
94 listener.onAfterRenderList(entries, stackController) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/init/
DNotificationsController.kt36 stackController: NotifStackController,
DNotificationsControllerStub.kt38 stackController: NotifStackController, in initialize()
DNotificationsControllerImpl.kt79 stackController: NotifStackController, in <lambda>()
104 .initialize(notificationListener, notificationRowBinder, listContainer, stackController) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/init/
DNotifPipelineInitializer.java93 NotifStackController stackController) { in initialize() argument
105 mShadeViewManager = mShadeViewManagerFactory.create(listContainer, stackController); in initialize()