Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/SystemUI/tests/src/com/android/systemui/car/systembar/
H A DCarSystemBarControllerTest.java213 ViewGroup window = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftDisabled_returnsNull()
222 ViewGroup window = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftEnabled_returnsWindow()
232 ViewGroup window1 = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftEnabled_calledTwice_returnsSameWindow()
233 ViewGroup window2 = mCarSystemBar.getLeftWindow(); in testGetLeftWindow_leftEnabled_calledTwice_returnsSameWindow()
318 ViewGroup window = mCarSystemBar.getLeftWindow(); in testSetLeftWindowVisibility_setTrue_isVisible()
329 ViewGroup window = mCarSystemBar.getLeftWindow(); in testSetLeftWindowVisibility_setFalse_isGone()
/aosp12/packages/apps/Car/SystemUI/src/com/android/systemui/car/systembar/
H A DCarSystemBarController.java167 public ViewGroup getLeftWindow() { in getLeftWindow() method in CarSystemBarController
168 return mShowLeft ? mCarSystemBarViewFactory.getLeftWindow() : null; in getLeftWindow()
189 return setWindowVisibility(getLeftWindow(), visibility); in setLeftWindowVisibility()
H A DCarSystemBarViewFactory.java100 public ViewGroup getLeftWindow() { in getLeftWindow() method in CarSystemBarViewFactory
H A DCarSystemBar.java352 mLeftSystemBarWindow = mCarSystemBarController.getLeftWindow(); in buildNavBarWindows()