Home
last modified time | relevance | path

Searched refs:LightBarController (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DQSCustomizer.java37 import com.android.systemui.statusbar.phone.LightBarController;
92 void updateNavBackDrop(Configuration newConfig, LightBarController lightBarController) { in updateNavBackDrop()
102 void updateNavColors(LightBarController lightBarController) { in updateNavColors()
DQSCustomizerController.java43 import com.android.systemui.statusbar.phone.LightBarController;
63 private final LightBarController mLightBarController;
107 KeyguardStateController keyguardStateController, LightBarController lightBarController, in QSCustomizerController()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DLightBarControllerTest.java51 private LightBarController mLightBarController;
59 mLightBarController = new LightBarController(mContext, mStatusBarIconController, in setup()
DScrimControllerTest.java98 LightBarController mLightBarController;
DStatusBarTest.java182 @Mock private LightBarController mLightBarController;
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DRemoteInputViewTest.java54 import com.android.systemui.statusbar.phone.LightBarController;
79 @Mock private LightBarController mLightBarController;
91 mDependency.injectTestDependency(LightBarController.class, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarController.java50 public class LightBarController implements BatteryController.BatteryStateChangeCallback, Dumpable { class
89 public LightBarController(Context ctx, DarkIconDispatcher darkIconDispatcher, in LightBarController() method in LightBarController
DScrimController.java224 public ScrimController(LightBarController lightBarController, DozeParameters dozeParameters, in ScrimController()
DStatusBar.java381 private final LightBarController mLightBarController;
725 LightBarController lightBarController, in StatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/dagger/
DStatusBarPhoneModule.java84 import com.android.systemui.statusbar.phone.LightBarController;
138 LightBarController lightBarController, in provideStatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/navigationbar/
DNavigationBar.java144 import com.android.systemui.statusbar.phone.LightBarController;
239 private LightBarController mLightBarController;
671 LightBarController lightBarController = mIsOnDefaultDisplay in onViewAttachedToWindow()
672 ? Dependency.get(LightBarController.class) in onViewAttachedToWindow()
673 : new LightBarController(mContext, in onViewAttachedToWindow()
1510 public void setLightBarController(LightBarController lightBarController) { in setLightBarController()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java89 import com.android.systemui.statusbar.phone.LightBarController;
887 private LightBarController mLightBarController;
894 mLightBarController = Dependency.get(LightBarController.class); in RemoteEditText()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java97 import com.android.systemui.statusbar.phone.LightBarController;
293 @Inject Lazy<LightBarController> mLightBarController;
485 mProviders.put(LightBarController.class, mLightBarController::get); in start()