/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/doze/ |
D | DozeMachineTest.java | 86 when(mDockManager.isDocked()).thenReturn(false); in setUp() 123 when(mDockManager.isDocked()).thenReturn(true); in testInitialize_afterDocked_goesToDockedAod() 134 when(mDockManager.isDocked()).thenReturn(true); in testInitialize_afterDockPaused_goesToDoze() 168 when(mDockManager.isDocked()).thenReturn(true); in testInitialize_dozeSuppressed_afterDocked_goesToDoze() 180 when(mDockManager.isDocked()).thenReturn(true); in testInitialize_dozeSuppressed_alwaysOnDisabled_afterDockPaused_goesToDoze() 193 when(mDockManager.isDocked()).thenReturn(true); in testInitialize_dozeSuppressed_alwaysOnEnabled_afterDockPaused_goesToDoze() 244 when(mDockManager.isDocked()).thenReturn(true); in testPulseDone_afterDocked_goesToDockedAoD() 257 when(mDockManager.isDocked()).thenReturn(true); in testPulseDone_whileDockedAoD_staysDockedAod() 269 when(mDockManager.isDocked()).thenReturn(true); in testPulseDone_dozeSuppressed_afterDocked_goesToDoze() 283 when(mDockManager.isDocked()).thenReturn(true); in testPulseDone_afterDockPaused_goesToDoze() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/dock/ |
D | DockManager.java | 89 boolean isDocked(); in isDocked() method
|
D | DockManagerImpl.java | 47 public boolean isDocked() { in isDocked() method in DockManagerImpl
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/dock/ |
D | DockManagerFake.java | 48 public boolean isDocked() { in isDocked() method in DockManagerFake
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/classifier/ |
D | FalsingDataProviderTest.java | 259 assertThat(mDataProvider.isDocked()).isFalse(); in test_isWirelessCharging() 262 assertThat(mDataProvider.isDocked()).isTrue(); in test_isWirelessCharging() 267 assertThat(mDataProvider.isDocked()).isFalse(); in test_isDocked() 269 assertThat(mDataProvider.isDocked()).isTrue(); in test_isDocked()
|
D | BrightLineClassifierTest.java | 169 when(mFalsingDataProvider.isDocked()).thenReturn(true); in testIsFalseTouch_Docked()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | ScrimState.java | 178 final boolean isDocked = mDockManager.isDocked(); in prepare() 182 mFrontAlpha = (alwaysOnEnabled || isDocked || quickPickupEnabled) in prepare()
|
D | StatusBarKeyguardViewManager.java | 157 boolean isDocked = mDockManager.isDocked(); 158 if (isDocked == mIsDocked) { 161 mIsDocked = isDocked; 318 mIsDocked = mDockManager.isDocked(); in registerListeners()
|
D | NotificationShadeWindowViewController.java | 195 if (mSingleTapEnabled && !mDockManager.isDocked()) { in setupExpandedStatusBar() 310 && !mDockManager.isDocked()) { in setupExpandedStatusBar()
|
D | ScrimController.java | 442 && (mDozeParameters.getAlwaysOn() || mDockManager.isDocked())) { in shouldFadeAwayWallpaper() 780 && (mDozeParameters.getAlwaysOn() || mDockManager.isDocked())) { in shouldUpdateFrontScrimAlpha()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
D | FalsingDataProvider.java | 362 public boolean isDocked() { in isDocked() method in FalsingDataProvider 363 return mBatteryController.isWirelessCharging() || mDockManager.isDocked(); in isDocked()
|
D | BrightLineFalsingManager.java | 332 || mDataProvider.isDocked() in skipFalsing() 400 ipw.println(mDataProvider.isDocked() ? 1 : 0); in dump()
|
D | FalsingCollectorImpl.java | 107 if (isWirelessCharging || mDockManager.isDocked()) {
|
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/clock/ |
D | ClockManagerTest.java | 116 assertThat(mClockManager.isDocked()).isTrue(); in dockEvent() 122 assertThat(mClockManager.isDocked()).isFalse(); in undockEvent()
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/clock/ |
D | ClockManager.java | 204 boolean isDocked() { in isDocked() method in ClockManager 363 if (ClockManager.this.isDocked()) { in getClockPlugin()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | NotificationShadeWindowViewTest.java | 105 when(mDockManager.isDocked()).thenReturn(false); in setUp()
|
D | ScrimControllerTest.java | 221 when(mDockManager.isDocked()).thenReturn(false); in setup() 465 when(mDockManager.isDocked()).thenReturn(true); in transitionToAod_afterDocked_ignoresAlwaysOnAndUpdatesFrontAlpha() 918 when(mDockManager.isDocked()).thenReturn(true); in testWillHideDockedWallpaper()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
D | DozeMachine.java | 396 } else if (mDockManager.isDocked()) { in resolveIntermediateState()
|