Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DNavigationBarController.java44 import com.android.systemui.statusbar.phone.LightBarController;
141 LightBarController lightBarController = isOnDefaultDisplay in createNavigationBar()
142 ? Dependency.get(LightBarController.class) in createNavigationBar()
143 : 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;
71 @Mock private LightBarController mLightBarController;
82 mDependency.injectTestDependency(LightBarController.class, in setUp()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DQSCustomizer.java47 import com.android.systemui.statusbar.phone.LightBarController;
68 private final LightBarController mLightBarController;
118 mLightBarController = Dependency.get(LightBarController.class); in QSCustomizer()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DLightBarController.java43 public class LightBarController implements BatteryController.BatteryStateChangeCallback, Dumpable { class
86 public LightBarController(Context ctx, DarkIconDispatcher darkIconDispatcher, in LightBarController() method in LightBarController
DNavigationBarFragment.java166 private LightBarController mLightBarController;
959 public void setLightBarController(LightBarController lightBarController) { in setLightBarController()
DStatusBar.java345 private LightBarController mLightBarController;
908 mLightBarController = Dependency.get(LightBarController.class); in makeStatusBarView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DRemoteInputView.java66 import com.android.systemui.statusbar.phone.LightBarController;
520 private LightBarController mLightBarController;
525 mLightBarController = Dependency.get(LightBarController.class); in RemoteEditText()
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DDependency.java77 import com.android.systemui.statusbar.phone.LightBarController;
248 @Inject Lazy<LightBarController> mLightBarController;
412 mProviders.put(LightBarController.class, mLightBarController::get); in start()