Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNavigationBarController.java44 import com.android.systemui.statusbar.phone.LightBarController;
139 LightBarController lightBarController = isOnDefaultDisplay in createNavigationBar()
140 ? Dependency.get(LightBarController.class) in createNavigationBar()
141 : new LightBarController(context, in createNavigationBar()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
DRemoteInputViewTest.java45 import com.android.systemui.statusbar.phone.LightBarController;
70 @Mock private LightBarController mLightBarController;
81 mDependency.injectTestDependency(LightBarController.class, in setUp()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DLightBarControllerTest.java50 private LightBarController mLightBarController;
58 mLightBarController = new LightBarController(mContext, mStatusBarIconController, in setup()
DScrimControllerTest.java92 LightBarController mLightBarController;
DStatusBarTest.java168 @Mock private LightBarController mLightBarController;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DQSCustomizer.java49 import com.android.systemui.statusbar.phone.LightBarController;
72 private final LightBarController mLightBarController;
94 LightBarController lightBarController, in QSCustomizer()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarController.java49 public class LightBarController implements BatteryController.BatteryStateChangeCallback, Dumpable { class
88 public LightBarController(Context ctx, DarkIconDispatcher darkIconDispatcher, in LightBarController() method in LightBarController
DNavigationBarFragment.java201 private LightBarController mLightBarController;
1289 public void setLightBarController(LightBarController lightBarController) { in setLightBarController()
DScrimController.java199 public ScrimController(LightBarController lightBarController, DozeParameters dozeParameters, in ScrimController()
DStatusBar.java334 private final LightBarController mLightBarController;
650 LightBarController lightBarController, in StatusBar()
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/statusbar/
DCarStatusBarModule.java78 import com.android.systemui.statusbar.phone.LightBarController;
128 LightBarController lightBarController, in provideStatusBar()
DCarStatusBar.java93 import com.android.systemui.statusbar.phone.LightBarController;
153 LightBarController lightBarController, in CarStatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/dagger/
DStatusBarPhoneModule.java77 import com.android.systemui.statusbar.phone.LightBarController;
126 LightBarController lightBarController, in provideStatusBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java74 import com.android.systemui.statusbar.phone.LightBarController;
557 private LightBarController mLightBarController;
563 mLightBarController = Dependency.get(LightBarController.class); in RemoteEditText()
/frameworks/base/packages/CarSystemUI/tests/src/com/android/systemui/car/navigationbar/
DCarNavigationBarTest.java50 import com.android.systemui.statusbar.phone.LightBarController;
78 private LightBarController mLightBarController;
/frameworks/base/packages/CarSystemUI/src/com/android/systemui/car/navigationbar/
DCarNavigationBar.java60 import com.android.systemui.statusbar.phone.LightBarController;
130 LightBarController lightBarController, in CarNavigationBar()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java84 import com.android.systemui.statusbar.phone.LightBarController;
261 @Inject Lazy<LightBarController> mLightBarController;
439 mProviders.put(LightBarController.class, mLightBarController::get); in start()