Home
last modified time | relevance | path

Searched refs:areNotificationsHiddenInShade (Results 1 – 12 of 12) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/domain/interactor/
DZenModeInteractorTest.kt117 val hidden by collectLastValue(underTest.areNotificationsHiddenInShade) in testAreNotificationsHiddenInShade_noPolicy()
129 val hidden by collectLastValue(underTest.areNotificationsHiddenInShade) in testAreNotificationsHiddenInShade_zenOffShadeSuppressed()
141 val hidden by collectLastValue(underTest.areNotificationsHiddenInShade) in testAreNotificationsHiddenInShade_zenOnShadeNotSuppressed()
153 val hidden by collectLastValue(underTest.areNotificationsHiddenInShade) in testAreNotificationsHiddenInShade_zenOnShadeSuppressed()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DZenModeControllerImplTest.java111 assertFalse(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOffShadeSuppressed()
122 assertFalse(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOnShadeNotSuppressed()
133 assertTrue(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOnShadeSuppressed()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/domain/interactor/
DZenModeInteractor.kt45 val areNotificationsHiddenInShade: Flow<Boolean> = in <lambda>() constant
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DZenModeController.java41 boolean areNotificationsHiddenInShade(); in areNotificationsHiddenInShade() method
DZenModeControllerImpl.java177 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in ZenModeControllerImpl
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
DFakeZenModeController.java88 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in FakeZenModeController
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationListViewModel.kt217 val areNotificationsHiddenInShade: Flow<Boolean> by lazy { in <lambda>() constant
221 zenModeInteractor.areNotificationsHiddenInShade.dumpWhileCollecting( in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayoutControllerTest.java236 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(true); in testUpdateEmptyShadeView_notificationsVisible_zenHiding()
257 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_notificationsHidden_zenNotHiding()
278 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_splitShadeMode_alwaysShowEmptyView()
306 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_bouncerShowing_hideEmptyView()
325 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_bouncerNotShowing_showEmptyView()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/
DNotificationListViewModelTest.kt259 val hidden by collectLastValue(underTest.areNotificationsHiddenInShade) in areNotificationsHiddenInShade_true()
271 val hidden by collectLastValue(underTest.areNotificationsHiddenInShade) in areNotificationsHiddenInShade_false()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewbinder/
DNotificationListViewBinder.kt209 viewModel.areNotificationsHiddenInShade, in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DNotificationStackScrollLayout.java4597 public void updateEmptyShadeView(boolean visible, boolean areNotificationsHiddenInShade) { in updateEmptyShadeView() argument
4599 updateEmptyShadeView(visible, areNotificationsHiddenInShade, in updateEmptyShadeView()
4604 public void updateEmptyShadeView(boolean visible, boolean areNotificationsHiddenInShade, in updateEmptyShadeView() argument
4608 if (areNotificationsHiddenInShade) { in updateEmptyShadeView()
DNotificationStackScrollLayoutController.java1437 mView.updateEmptyShadeView(shouldShow, mZenModeController.areNotificationsHiddenInShade()); in updateShowEmptyShadeView()