Searched refs:decor (Results 1 – 2 of 2) sorted by relevance
278 View decor = mWindow.getDecorView(); in testDecorView() local279 assertNotNull(decor); in testDecorView()280 checkDecorView(decor); in testDecorView()282 decor = mWindow.peekDecorView(); in testDecorView()283 if (decor != null) { in testDecorView()284 checkDecorView(decor); in testDecorView()288 private void checkDecorView(View decor) { in checkDecorView() argument293 assertTrue(decor.getWidth() >= screenWidth); in checkDecorView()294 assertTrue(decor.getHeight() >= screenHeight); in checkDecorView()295 assertSame(mWindow.getContext(), decor.getContext()); in checkDecorView()[all …]
183 final View decor = d.getWindow().getDecorView(); in testShow() local192 assertEquals(View.GONE, decor.getVisibility()); in testShow()202 assertEquals(View.VISIBLE, decor.getVisibility()); in testShow()