Home
last modified time | relevance | path

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

/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
DCarSystemBarControllerTest.java249 ViewGroup window = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftDisabled_returnsNull()
259 ViewGroup window = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftEnabled_returnsWindow()
270 ViewGroup window1 = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftEnabled_calledTwice_returnsSameWindow()
271 ViewGroup window2 = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftEnabled_calledTwice_returnsSameWindow()
357 ViewGroup window = mCarSystemBar.getLeftWindow(); in testSetLeftWindowVisibility_setTrue_isVisible()
369 ViewGroup window = mCarSystemBar.getLeftWindow(); in testSetLeftWindowVisibility_setFalse_isGone()
DCarSystemBarTest.java173 when(mCarSystemBarController.getLeftWindow()).thenReturn(mock(ViewGroup.class)); in setUp()
490 when(mCarSystemBarController.getLeftWindow()).thenReturn(null); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
507 when(mCarSystemBarController.getLeftWindow()).thenReturn(mock(ViewGroup.class)); in restartSystemBars_newSystemBarConfig_recreatesSystemBars()
/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
DCarSystemBarController.java197 public ViewGroup getLeftWindow() { in getLeftWindow() method in CarSystemBarController
198 return mShowLeft ? mCarSystemBarViewFactory.getLeftWindow() : null; in getLeftWindow()
219 return setWindowVisibility(getLeftWindow(), visibility); in setLeftWindowVisibility()
DCarSystemBarViewFactory.java112 public ViewGroup getLeftWindow() { in getLeftWindow() method in CarSystemBarViewFactory
DCarSystemBar.java433 mLeftSystemBarWindow = mCarSystemBarController.getLeftWindow(); in buildNavBarWindows()