Home
last modified time | relevance | path

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

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DCarSystemBarControllerTest.java281 ViewGroup window = mCarSystemBar.getRightWindow(); in testGetRightWindow_rightDisabled_returnsNull()
291 ViewGroup window = mCarSystemBar.getRightWindow(); in testGetRightWindow_rightEnabled_returnsWindow()
301 ViewGroup window1 = mCarSystemBar.getRightWindow(); in testGetRightWindow_rightEnabled_calledTwice_returnsSameWindow()
302 ViewGroup window2 = mCarSystemBar.getRightWindow(); in testGetRightWindow_rightEnabled_calledTwice_returnsSameWindow()
380 ViewGroup window = mCarSystemBar.getRightWindow(); in testSetRightWindowVisibility_setTrue_isVisible()
391 ViewGroup window = mCarSystemBar.getRightWindow(); in testSetRightWindowVisibility_setFalse_isGone()
DCarSystemBarTest.java174 when(mCarSystemBarController.getRightWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
491 when(mCarSystemBarController.getRightWindow()).thenReturn(null); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
508 when(mCarSystemBarController.getRightWindow()).thenReturn(mock(ViewGroup.class)); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBarController.java203 public ViewGroup getRightWindow() { in getRightWindow() method in CarSystemBarController
204 return mShowRight ? mCarSystemBarViewFactory.getRightWindow() : null; in getRightWindow()
224 return setWindowVisibility(getRightWindow(), visibility); in setRightWindowVisibility()
DCarSystemBarViewFactory.java117 public ViewGroup getRightWindow() { in getRightWindow() method in CarSystemBarViewFactory
DCarSystemBar.java434 mRightSystemBarWindow = mCarSystemBarController.getRightWindow(); in buildNavBarWindows()