Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DZenModeControllerImplTest.java98 assertFalse(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOffShadeSuppressed()
109 assertFalse(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOnShadeNotSuppressed()
120 assertTrue(mController.areNotificationsHiddenInShade()); in testAreNotificationsHiddenInShade_zenOnShadeSuppressed()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DZenModeController.java41 boolean areNotificationsHiddenInShade(); in areNotificationsHiddenInShade() method
H A DZenModeControllerImpl.java126 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in ZenModeControllerImpl
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/utils/leaks/
H A DFakeZenModeController.java88 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in FakeZenModeController
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutControllerTest.java226 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(true); in testUpdateEmptyShadeView_notificationsVisible_zenHiding()
250 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_notificationsHidden_zenNotHiding()
274 when(mZenModeController.areNotificationsHiddenInShade()).thenReturn(false); in testUpdateEmptyShadeView_splitShadeMode_alwaysShowEmptyView()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
H A DNotificationStackScrollLayoutController.java1190 mZenModeController.areNotificationsHiddenInShade()); in updateShowEmptyShadeView()
1193 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in NotificationStackScrollLayoutController
1194 return mZenModeController.areNotificationsHiddenInShade(); in areNotificationsHiddenInShade()