Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/dreams/
DDreamOverlayStateController.java189 if (isLowLightActive() || containsState(STATE_HOME_CONTROL_ACTIVE)) { in getComplications()
274 public boolean isLowLightActive() { in isLowLightActive() method
346 if (isLowLightActive() && !active) { in setLowLightActive()
DDreamOverlayContainerViewController.java290 if (!mStateController.isLowLightActive()) { in onViewAttached()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/dreams/
DDreamOverlayContainerViewControllerTest.java273 when(mStateController.isLowLightActive()).thenReturn(false); in testStartDreamEntryAnimationsOnAttachedNonLowLight()
283 when(mStateController.isLowLightActive()).thenReturn(true); in testNeverStartDreamEntryAnimationsOnAttachedForLowLight()
294 when(mStateController.isLowLightActive()).thenReturn(false); in testDownwardEntryAnimationsWhenExitingLowLight()
DDreamOverlayStateControllerTest.java284 assertThat(stateController.isLowLightActive()).isFalse(); in testNotifyLowLightChanged()
290 assertThat(stateController.isLowLightActive()).isTrue(); in testNotifyLowLightChanged()
299 assertThat(stateController.isLowLightActive()).isFalse(); in testNotifyLowLightExit()
308 assertThat(stateController.isLowLightActive()).isFalse(); in testNotifyLowLightExit()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/ambient/statusbar/ui/
DAmbientStatusBarViewControllerTest.java475 when(mDreamOverlayStateController.isLowLightActive()).thenReturn(true); in testLowLightHidesStatusBar()
487 when(mDreamOverlayStateController.isLowLightActive()).thenReturn(false); in testLowLightHidesStatusBar()
495 when(mDreamOverlayStateController.isLowLightActive()).thenReturn(false); in testNoChangeToVisibilityBeforeDreamStartedWhenLowLightStateChange()
/frameworks/base/packages/SystemUI/src/com/android/systemui/ambient/statusbar/ui/
DAmbientStatusBarViewController.java250 return (!mDreamOverlayStateController.isLowLightActive() in shouldShowStatusBar()