Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/events/
DFakeStatusEvent.kt24 override val viewCreator: ViewCreator, constant in com.android.systemui.statusbar.events.FakeStatusEvent
33 override val viewCreator: ViewCreator, constant in com.android.systemui.statusbar.events.FakePrivacyStatusEvent
DSystemEventChipAnimationControllerTest.kt59 private var viewCreator: ViewCreator = { testView } in <lambda>() variable in com.android.systemui.statusbar.events.SystemEventChipAnimationControllerTest
106 controller.prepareChipAnimation(viewCreator) in prepareChipAnimation_lazyInitializes()
112 controller.prepareChipAnimation(viewCreator) in prepareChipAnimation_positionsChip()
122 controller.prepareChipAnimation(viewCreator) in prepareChipAnimation_rotation_repositionsChip()
168 controller.prepareChipAnimation(viewCreator) in fullScreenStatusBar_positionsChipAtTop_withTopGravity()
DSystemStatusAnimationSchedulerImplTest.kt628 val fakePrivacyStatusEvent = FakePrivacyStatusEvent(viewCreator = { privacyChip }) in createAndScheduleFakePrivacyEvent()
640 viewCreator = { view }, in scheduleFakeEventWithView()
650 FakeStatusEvent(viewCreator = { batteryChip }, priority = 50, forceVisible = false) in createAndScheduleFakeBatteryEvent()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/events/
DStatusEvent.kt37 val viewCreator: ViewCreator in <lambda>() constant
86 override val viewCreator: ViewCreator = { context -> in context() constant in BatteryEvent
106 override val viewCreator: ViewCreator = { context -> in context() constant in ConnectedDisplayEvent
124 override val viewCreator: ViewCreator = { context -> in context() constant in PrivacyEvent
DSystemEventChipAnimationController.kt78 fun prepareChipAnimation(viewCreator: ViewCreator) { in prepareChipAnimation()
86 currentAnimatedView = viewCreator(themedContext).also { in prepareChipAnimation()
DSystemStatusAnimationSchedulerImpl.kt253 chipAnimationController.prepareChipAnimation(event.viewCreator) in <lambda>()