Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DZenModeControllerImplTest.java109 assertFalse(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOffShadeSuppressed()
120 assertFalse(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOnShadeNotSuppressed()
131 assertTrue(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOnShadeSuppressed()
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutControllerTest.java218 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(true); in testUpdateEmptyShadeView_notificationsVisible_zenHiding()
238 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_notificationsHidden_zenNotHiding()
258 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_splitShadeMode_alwaysShowEmptyView()
285 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_bouncerShowing_flagOff_hideEmptyView()
306 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_bouncerShowing_flagOn_hideEmptyView()
327 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_bouncerNotShowing_flagOff_showEmptyView()
348 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_bouncerNotShowing_flagOn_showEmptyView()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DZenModeController.java41 boolean areNotificationsHiddenInShade(); in areNotificationsHiddenInShade() method
H A DZenModeControllerImpl.java161 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in ZenModeControllerImpl
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
H A DFakeZenModeController.java88 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in FakeZenModeController
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java1268 mView.updateEmptyShadeView(shouldShow, mZenModeController.areNotificationsHiddenInShade()); in updateShowEmptyShadeView()
H A DNotificationStackScrollLayout.java4548 void updateEmptyShadeView(boolean visible, boolean areNotificationsHiddenInShade) { in updateEmptyShadeView() argument
4551 if (areNotificationsHiddenInShade) { in updateEmptyShadeView()