Home
last modified time | relevance | path

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

/cts/tests/framework/base/windowmanager/src/android/server/wm/animations/
DLayoutTests.java105 final Rect visibleFrame = new Rect(); in testLayoutAfterRemovingFocus() local
111 .getWindowVisibleDisplayFrame(visibleFrame)); in testLayoutAfterRemovingFocus()
112 assertFalse("Visible frame must not be empty.", visibleFrame.isEmpty()); in testLayoutAfterRemovingFocus()
114 doTestLayoutAfterRemovingFocus(activity, visibleFrame, SYSTEM_UI_FLAG_FULLSCREEN); in testLayoutAfterRemovingFocus()
115 doTestLayoutAfterRemovingFocus(activity, visibleFrame, SYSTEM_UI_FLAG_HIDE_NAVIGATION); in testLayoutAfterRemovingFocus()
116 doTestLayoutAfterRemovingFocus(activity, visibleFrame, SYSTEM_UI_FLAG_HIDE_ALL); in testLayoutAfterRemovingFocus()
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DWindowManagerState.java2483 if (proto.visibleFrame != null) {
2484 mVisibleFrame = new Rect(proto.visibleFrame.left, proto.visibleFrame.top,
2485 proto.visibleFrame.right, proto.visibleFrame.bottom);
/cts/tests/tests/widget/src/android/widget/cts/
DPopupWindowTest.java1818 Rect visibleFrame = new Rect(); in testClipToScreenClipsToInsets() local
1819 parentWindowView.getWindowVisibleDisplayFrame(visibleFrame); in testClipToScreenClipsToInsets()
1821 assertEquals(measuredWidth, visibleFrame.width()); in testClipToScreenClipsToInsets()
1822 assertEquals(measuredHeight, visibleFrame.height()); in testClipToScreenClipsToInsets()