Home
last modified time | relevance | path

Searched refs:shouldHideFooterView (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationListViewModelTest.kt478 val shouldHide by collectLastValue(underTest.shouldHideFooterView) in shouldHideFooterView_trueWhenShadeIsClosed()
492 val shouldHide by collectLastValue(underTest.shouldHideFooterView) in shouldHideFooterView_falseWhenShadeIsOpen()
506 val shouldHide by collectLastValue(underTest.shouldHideFooterView) in shouldHideFooterView_falseWhenQSPartiallyOpen()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationListViewModel.kt122 val shouldHideFooterView: Flow<Boolean> by lazy { in <lambda>() constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewbinder/
DNotificationListViewBinder.kt202 launch { viewModel.shouldHideFooterView.collect { footerView.setShouldBeHidden(it) } } in <lambda>()