Home
last modified time | relevance | path

Searched refs:bounds2 (Results 1 – 2 of 2) sorted by relevance

/cts/tests/accessibility/src/android/view/accessibility/cts/
DAccessibilityWindowInfoTest.java100 Rect bounds2 = new Rect(); in areWindowsEqual() local
102 w2.getBoundsInScreen(bounds2); in areWindowsEqual()
103 equality &= bounds1.equals(bounds2); in areWindowsEqual()
/cts/tests/tests/graphics/src/android/graphics/cts/
DPaintTest.java976 Rect bounds2 = new Rect(); in testGetTextBounds() local
979 p.getTextBounds(textChars1, 0, textChars1.length, bounds2); in testGetTextBounds()
981 assertEquals(bounds1, bounds2); in testGetTextBounds()
985 p.getTextBounds(text2, 0, text1.length(), bounds2); in testGetTextBounds()
986 assertEquals(bounds1, bounds2); in testGetTextBounds()
989 p.getTextBounds(text2, 0, text2.length(), bounds2); in testGetTextBounds()
990 assertEquals(bounds1.left, bounds2.left); in testGetTextBounds()
991 assertTrue(bounds2.right > bounds1.right); in testGetTextBounds()
995 p.getTextBounds(text1, 0, text1.length(), bounds2); in testGetTextBounds()
996 assertTrue(bounds2.right > bounds1.right); in testGetTextBounds()
[all …]