Home
last modified time | relevance | path

Searched refs:mSystemBarConfigs (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DSystemBarConfigsTest.java67 private SystemBarConfigs mSystemBarConfigs; field in SystemBarConfigsTest
79 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_allSystemBarsEnabled_eachHasUniqueBarTypes_doesNotThrowException()
87 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_allSystemBarsEnabled_twoBarsHaveDuplicateType_throwsRuntimeException()
92 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_allSystemBarsEnabled_systemBarSidesSortedByZOrder()
93 List<Integer> actualOrder = mSystemBarConfigs.getSystemBarSidesByZOrder(); in onInit_allSystemBarsEnabled_systemBarSidesSortedByZOrder()
108 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_intersectingBarsHaveSameZOrder_throwsRuntimeException()
118 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_hideBottomSystemBarForKeyboardValueDoNotSync_throwsRuntimeException()
127 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_topNotifPanelViewMediatorUsed_topBarEnabled_doesNotThrowException()
136 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_topNotifPanelViewMediatorUsed_topBarNotEnabled_throwsRuntimeException()
145 mSystemBarConfigs = new SystemBarConfigs(mResources); in onInit_notificationPanelViewMediatorUsed_topBarNotEnabled_doesNotThrowException()
[all …]
DCarSystemBarTest.java137 private SystemBarConfigs mSystemBarConfigs; field in CarSystemBarTest
180 mSystemBarConfigs = new SystemBarConfigs(mTestableResources.getResources()); in initCarSystemBar()
186 mSystemBarConfigs, in initCarSystemBar()
504 mSystemBarConfigs = new SystemBarConfigs(mTestableResources.getResources()); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBar.java125 private final SystemBarConfigs mSystemBarConfigs; field in CarSystemBar
207 mSystemBarConfigs = systemBarConfigs; in CarSystemBar()
247 mHideTopBarForKeyboard = mSystemBarConfigs.getHideForKeyboardBySide(TOP); in start()
248 mHideBottomBarForKeyboard = mSystemBarConfigs.getHideForKeyboardBySide(BOTTOM); in start()
249 mHideLeftBarForKeyboard = mSystemBarConfigs.getHideForKeyboardBySide(LEFT); in start()
250 mHideRightBarForKeyboard = mSystemBarConfigs.getHideForKeyboardBySide(RIGHT); in start()
437 if (mSystemBarConfigs in buildNavBarWindows()
440 } else if (mSystemBarConfigs in buildNavBarWindows()
450 mSystemBarConfigs.insetSystemBar(TOP, mTopSystemBarView); in buildNavBarContent()
457 mSystemBarConfigs.insetSystemBar(BOTTOM, mBottomSystemBarView); in buildNavBarContent()
[all …]
DCarSystemBarMediator.java50 private final SystemBarConfigs mSystemBarConfigs; field in CarSystemBarMediator
64 mSystemBarConfigs = systemBarConfigs; in CarSystemBarMediator()
102 mSystemBarConfigs.resetSystemBarConfigs(); in onConfigChanged()
DCarSystemBarController.java76 private final SystemBarConfigs mSystemBarConfigs; field in CarSystemBarController
135 mSystemBarConfigs = systemBarConfigs; in CarSystemBarController()
144 mShowTop = mSystemBarConfigs.getEnabledStatusBySide(TOP); in readConfigs()
145 mShowBottom = mSystemBarConfigs.getEnabledStatusBySide(BOTTOM); in readConfigs()
146 mShowLeft = mSystemBarConfigs.getEnabledStatusBySide(LEFT); in readConfigs()
147 mShowRight = mSystemBarConfigs.getEnabledStatusBySide(RIGHT); in readConfigs()
696 mSystemBarConfigs.resetSystemBarConfigs(); in resetSystemBarConfigs()