/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/domain/interactor/ |
D | ZenModeInteractorTest.kt | 117 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/ |
D | ZenModeControllerImplTest.java | 111 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/ |
D | ZenModeInteractor.kt | 45 val areNotificationsHiddenInShade: Flow<Boolean> = in <lambda>() constant
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | ZenModeController.java | 41 boolean areNotificationsHiddenInShade(); in areNotificationsHiddenInShade() method
|
D | ZenModeControllerImpl.java | 177 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in ZenModeControllerImpl
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/ |
D | FakeZenModeController.java | 88 public boolean areNotificationsHiddenInShade() { in areNotificationsHiddenInShade() method in FakeZenModeController
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ui/viewmodel/ |
D | NotificationListViewModel.kt | 217 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/ |
D | NotificationStackScrollLayoutControllerTest.java | 236 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/ |
D | NotificationListViewModelTest.kt | 259 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/ |
D | NotificationListViewBinder.kt | 209 viewModel.areNotificationsHiddenInShade, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationStackScrollLayout.java | 4597 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()
|
D | NotificationStackScrollLayoutController.java | 1437 mView.updateEmptyShadeView(shouldShow, mZenModeController.areNotificationsHiddenInShade()); in updateShowEmptyShadeView()
|