Home
last modified time | relevance | path

Searched refs:mLightBarController (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DNavBarTintController.java46 private final LightBarTransitionsController mLightBarController; field in NavBarTintController
79 mLightBarController = lightBarController; in NavBarTintController()
175 mLightBarController.setIconsDark(true /* dark */, true /* animate */); in updateTint()
178 mLightBarController.setIconsDark(false /* dark */, true /* animate */); in updateTint()
DNavigationBarFragment.java166 private LightBarController mLightBarController; field in NavigationBarFragment
509 mLightBarController.onNavigationVisibilityChanged(mSystemUiVisibility, 0 /* mask */, in restoreSystemUiVisibilityState()
543 mLightBarController.onNavigationVisibilityChanged( in setSystemUiVisibility()
960 mLightBarController = lightBarController; in setLightBarController()
961 mLightBarController.setNavigationBar(mNavigationBarView.getLightTransitionsController()); in setLightBarController()
DStatusBar.java345 private LightBarController mLightBarController; field in StatusBar
908 mLightBarController = Dependency.get(LightBarController.class); in makeStatusBarView()
914 (state, alpha, color) -> mLightBarController.setScrimState(state, alpha, color), in makeStatusBarView()
1229 mLightBarController.setBiometricUnlockController(mBiometricUnlockController); in startKeyguard()
2124 mLightBarController.onSystemUiVisibilityChanged(fullscreenStackVis, dockedStackVis, in setSystemUiVisibility()
2375 if (mLightBarController != null) { in dump()
2376 mLightBarController.dump(fd, pw, args); in dump()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DQSCustomizer.java68 private final LightBarController mLightBarController; field in QSCustomizer
118 mLightBarController = Dependency.get(LightBarController.class); in QSCustomizer()
147 mLightBarController.setQsCustomizing(mIsShowingNavBackdrop && isShown); in updateNavColors()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DRemoteInputViewTest.java71 @Mock private LightBarController mLightBarController; field in RemoteInputViewTest
83 mLightBarController); in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java520 private LightBarController mLightBarController; field in RemoteInputView.RemoteEditText
525 mLightBarController = Dependency.get(LightBarController.class); in RemoteEditText()
565 mLightBarController.setDirectReplying(focused); in onFocusChanged()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java248 @Inject Lazy<LightBarController> mLightBarController; field in Dependency
412 mProviders.put(LightBarController.class, mLightBarController::get); in start()