Home
last modified time | relevance | path

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

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DCarSystemBarControllerTest.java182 ViewGroup window = mCarSystemBar.getTopWindow(); in testGetTopWindow_topDisabled_returnsNull()
192 ViewGroup window = mCarSystemBar.getTopWindow(); in testGetTopWindow_topEnabled_returnsWindow()
202 ViewGroup window1 = mCarSystemBar.getTopWindow(); in testGetTopWindow_topEnabled_calledTwice_returnsSameWindow()
203 ViewGroup window2 = mCarSystemBar.getTopWindow(); in testGetTopWindow_topEnabled_calledTwice_returnsSameWindow()
312 ViewGroup window = mCarSystemBar.getTopWindow(); in testSetTopWindowVisibility_setTrue_isVisible()
323 ViewGroup window = mCarSystemBar.getTopWindow(); in testSetTopWindowVisibility_setFalse_isGone()
DCarSystemBarTest.java171 when(mCarSystemBarController.getTopWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
488 when(mCarSystemBarController.getTopWindow()).thenReturn(mock(ViewGroup.class)); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
505 when(mCarSystemBarController.getTopWindow()).thenReturn(mock(ViewGroup.class)); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBarController.java185 public ViewGroup getTopWindow() { in getTopWindow() method in CarSystemBarController
186 return mShowTop ? mCarSystemBarViewFactory.getTopWindow() : null; in getTopWindow()
209 return setWindowVisibility(getTopWindow(), visibility); in setTopWindowVisibility()
DCarSystemBarViewFactory.java102 public ViewGroup getTopWindow() { in getTopWindow() method in CarSystemBarViewFactory
DCarSystemBar.java431 mTopSystemBarWindow = mCarSystemBarController.getTopWindow(); in buildNavBarWindows()