Home
last modified time | relevance | path

Searched refs:showAllNotifications (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/ui/viewmodel/
DBouncerToGoneFlowsTest.kt169 val showAllNotifications by in showAllNotifications_isTrue_whenLeaveShadeOpen() constant
170 collectLastValue(underTest.showAllNotifications(500.milliseconds, PRIMARY_BOUNCER)) in showAllNotifications_isTrue_whenLeaveShadeOpen()
177 assertThat(showAllNotifications).isTrue() in showAllNotifications_isTrue_whenLeaveShadeOpen()
179 assertThat(showAllNotifications).isFalse() in showAllNotifications_isTrue_whenLeaveShadeOpen()
186 val showAllNotifications by in showAllNotifications_isFalse_whenLeaveShadeIsNotOpen() constant
187 collectLastValue(underTest.showAllNotifications(500.milliseconds, PRIMARY_BOUNCER)) in showAllNotifications_isFalse_whenLeaveShadeIsNotOpen()
194 assertThat(showAllNotifications).isFalse() in showAllNotifications_isFalse_whenLeaveShadeIsNotOpen()
196 assertThat(showAllNotifications).isFalse() in showAllNotifications_isFalse_whenLeaveShadeIsNotOpen()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/
DAlternateBouncerToGoneTransitionViewModel.kt90 val showAllNotifications: Flow<Boolean> = constant
91 bouncerToGoneFlows.showAllNotifications(TO_GONE_DURATION, ALTERNATE_BOUNCER)
DPrimaryBouncerToGoneTransitionViewModel.kt67 val showAllNotifications: Flow<Boolean> = constant
68 bouncerToGoneFlows.showAllNotifications(TO_GONE_DURATION, PRIMARY_BOUNCER)
DBouncerToGoneFlows.kt73 fun showAllNotifications(duration: Duration, from: KeyguardState): Flow<Boolean> { in <lambda>() method
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DSharedNotificationContainerViewModel.kt625 primaryBouncerToGoneTransitionViewModel.showAllNotifications, in <lambda>()
626 alternateBouncerToGoneTransitionViewModel.showAllNotifications, in <lambda>()
629 ) { isOnLockscreen, statusBarState, showAllNotifications -> in <lambda>() method
630 statusBarState == SHADE_LOCKED || !isOnLockscreen || showAllNotifications in <lambda>()