Home
last modified time | relevance | path

Searched refs:firstBounds (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DLightBarControllerTest.java65 final Rect firstBounds = new Rect(0, 0, 1, 1); in testOnStatusBarAppearanceChanged_multipleStacks_allStacksLight() local
68 new AppearanceRegion(APPEARANCE_LIGHT_STATUS_BARS, firstBounds), in testOnStatusBarAppearanceChanged_multipleStacks_allStacksLight()
80 final Rect firstBounds = new Rect(0, 0, 1, 1); in testOnStatusBarAppearanceChanged_multipleStacks_oneStackLightOneStackDark() local
83 new AppearanceRegion(APPEARANCE_LIGHT_STATUS_BARS, firstBounds), in testOnStatusBarAppearanceChanged_multipleStacks_oneStackLightOneStackDark()
89 verify(mStatusBarIconController).setIconsDarkArea(eq(firstBounds)); in testOnStatusBarAppearanceChanged_multipleStacks_oneStackLightOneStackDark()
95 final Rect firstBounds = new Rect(0, 0, 1, 1); in testOnStatusBarAppearanceChanged_multipleStacks_oneStackDarkOneStackLight() local
98 new AppearanceRegion(0 /* appearance */, firstBounds), in testOnStatusBarAppearanceChanged_multipleStacks_oneStackDarkOneStackLight()
110 final Rect firstBounds = new Rect(0, 0, 1, 1); in testOnStatusBarAppearanceChanged_multipleStacks_allStacksDark() local
113 new AppearanceRegion(0 /* appearance */, firstBounds), in testOnStatusBarAppearanceChanged_multipleStacks_allStacksDark()
/frameworks/base/tests/TaskOrganizerTest/src/com/android/test/taskembed/
DTaskOrganizerMultiWindowTest.java117 public CountDownLatch openTaskView(Rect firstBounds, Rect secondBounds) { in openTaskView() argument
123 new FrameLayout.LayoutParams(firstBounds.width(), firstBounds.height(), in openTaskView()
125 viewLayout1.setMargins(firstBounds.left, firstBounds.top, 0, 0); in openTaskView()
138 public CountDownLatch resizeTaskView(Rect firstBounds, Rect secondBounds) { in resizeTaskView() argument
141 mTaskView1.resizeTask(firstBounds.width(), firstBounds.height()); in resizeTaskView()
DResizeTasksSyncTest.kt68 val firstBounds = Rect(0, 0, 1080, 800) in <lambda>() constant
75 resizeReadyLatch = it.resizeTaskView(firstBounds, secondBounds) in <lambda>()
84 layer.activeBuffer?.width == firstBounds.width() && in <lambda>()
85 layer.activeBuffer?.height == firstBounds.height() in <lambda>()
94 val firstTaskSize = Point(firstBounds.width(), firstBounds.height()) in <lambda>()