Home
last modified time | relevance | path

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

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DCarSystemBarControllerTest.java218 ViewGroup window = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomDisabled_returnsNull()
228 ViewGroup window = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomEnabled_returnsWindow()
238 ViewGroup window1 = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomEnabled_calledTwice_returnsSameWindow()
239 ViewGroup window2 = mCarSystemBar.getBottomWindow(); in testGetBottomWindow_bottomEnabled_calledTwice_returnsSameWindow()
334 ViewGroup window = mCarSystemBar.getBottomWindow(); in testSetBottomWindowVisibility_setTrue_isVisible()
345 ViewGroup window = mCarSystemBar.getBottomWindow(); in testSetBottomWindowVisibility_setFalse_isGone()
DCarSystemBarTest.java172 when(mCarSystemBarController.getBottomWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
489 when(mCarSystemBarController.getBottomWindow()).thenReturn(mock(ViewGroup.class)); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
506 when(mCarSystemBarController.getBottomWindow()).thenReturn(null); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBarController.java191 public ViewGroup getBottomWindow() { in getBottomWindow() method in CarSystemBarController
192 return mShowBottom ? mCarSystemBarViewFactory.getBottomWindow() : null; in getBottomWindow()
214 return setWindowVisibility(getBottomWindow(), visibility); in setBottomWindowVisibility()
DCarSystemBarViewFactory.java107 public ViewGroup getBottomWindow() { in getBottomWindow() method in CarSystemBarViewFactory
DCarSystemBar.java432 mBottomSystemBarWindow = mCarSystemBarController.getBottomWindow(); in buildNavBarWindows()