Home
last modified time | relevance | path

Searched refs:areNotificationsLightsOut (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/
DCollapsedStatusBarViewModel.kt76 fun areNotificationsLightsOut(displayId: Int): Flow<Boolean> in <lambda>() method
102 override fun areNotificationsLightsOut(displayId: Int): Flow<Boolean> = in areNotificationsLightsOut() method
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/pipeline/shared/ui/viewmodel/
DCollapsedStatusBarViewModelImplTest.kt352 val actual by collectLastValue(underTest.areNotificationsLightsOut(DISPLAY_ID)) in areNotificationsLightsOut_lowProfileWithNotifications_true()
366 val actual by collectLastValue(underTest.areNotificationsLightsOut(DISPLAY_ID)) in areNotificationsLightsOut_lowProfileWithoutNotifications_false()
379 val actual by collectLastValue(underTest.areNotificationsLightsOut(DISPLAY_ID)) in areNotificationsLightsOut_defaultStatusBarModeWithoutNotifications_false()
392 val actual by collectLastValue(underTest.areNotificationsLightsOut(DISPLAY_ID)) in areNotificationsLightsOut_defaultStatusBarModeWithNotifications_false()
402 val flow = underTest.areNotificationsLightsOut(DISPLAY_ID) in areNotificationsLightsOut_requiresFlagEnabled()
DFakeCollapsedStatusBarViewModel.kt34 override fun areNotificationsLightsOut(displayId: Int): Flow<Boolean> = areNotificationLightsOut in areNotificationsLightsOut() method in com.android.systemui.statusbar.pipeline.shared.ui.viewmodel.FakeCollapsedStatusBarViewModel
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/pipeline/shared/ui/binder/
DCollapsedStatusBarViewBinder.kt79 viewModel.areNotificationsLightsOut(displayId).collect { show -> in bind()