Searched refs:windowController (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | PhoneStatusBarViewTest.kt | 58 private val windowController = mock<StatusBarWindowController>() constant in com.android.systemui.statusbar.phone.PhoneStatusBarViewTest 67 mDependency.injectTestDependency(StatusBarWindowController::class.java, windowController) in setUp() 131 verify(windowController).refreshStatusBarHeight() in onAttachedToWindow_flagEnabled_updatesWindowHeight() 140 verify(windowController, never()).refreshStatusBarHeight() in onAttachedToWindow_flagDisabled_doesNotUpdateWindowHeight() 149 verify(windowController).refreshStatusBarHeight() in onConfigurationChanged_flagEnabled_updatesWindowHeight() 161 verify(windowController, times(4)).refreshStatusBarHeight() in onConfigurationChanged_multipleCalls_flagEnabled_updatesWindowHeightMultipleTimes() 170 verify(windowController, never()).refreshStatusBarHeight() in onConfigurationChanged_flagDisabled_doesNotUpdateWindowHeight() 182 verify(windowController, never()).refreshStatusBarHeight() in onConfigurationChanged_multipleCalls_flagDisabled_doesNotUpdateWindowHeight()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/core/ |
D | StatusBarInitializer.kt | 38 private val windowController: StatusBarWindowController, in <lambda>() constant in com.android.systemui.statusbar.core.StatusBarInitializer 51 windowController.fragmentHostManager.addTagListener( in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/scene/domain/startable/ |
D | SceneContainerStartable.kt | 115 private val windowController: NotificationShadeWindowController, in <lambda>() constant in com.android.systemui.scene.domain.startable.SceneContainerStartable 498 windowController.setNotificationShadeFocusable(sceneKey != Scenes.Gone) in <lambda>() 504 windowController.setKeyguardShowing(!isDeviceEntered) in <lambda>() 513 windowController.setBouncerShowing(isBouncerShowing) in <lambda>() 519 windowController.setKeyguardOccluded(invisibleDueToOcclusion) in <lambda>()
|
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/scene/domain/interactor/ |
D | SceneContainerStartableKosmos.kt | 61 windowController = notificationShadeWindowController, in <lambda>()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/scene/domain/startable/ |
D | SceneContainerStartableTest.kt | 101 private val windowController = kosmos.notificationShadeWindowController in <lambda>() constant 904 verify(windowController, never()).setNotificationShadeFocusable(anyBoolean()) in <lambda>() 908 verify(windowController, times(1)).setNotificationShadeFocusable(false) in <lambda>() 922 verify(windowController, times(1)).setNotificationShadeFocusable(false) in <lambda>() 927 verify(windowController, times(1)).setNotificationShadeFocusable(true) in <lambda>() 941 verify(windowController, times(1)).setNotificationShadeFocusable(true) in <lambda>() 946 verify(windowController, times(2)).setNotificationShadeFocusable(false) in <lambda>()
|