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.java134 Rect bounds2 = new Rect(); in areWindowsEqual() local
136 w2.getBoundsInScreen(bounds2); in areWindowsEqual()
137 equality &= bounds1.equals(bounds2); in areWindowsEqual()
/cts/tests/tests/graphics/src/android/graphics/cts/
DPaintTest.java1110 Rect bounds2 = new Rect();
1114 p.getTextBounds(textChars1, 0, textChars1.length, bounds2);
1118 assertEquals(bounds1, bounds2);
1119 assertEquals(bounds2, bounds3);
1123 p.getTextBounds(text2, 0, text1.length(), bounds2);
1124 assertEquals(bounds1, bounds2);
1127 p.getTextBounds(text2, 0, text2.length(), bounds2);
1128 assertEquals(bounds1.left, bounds2.left);
1129 assertTrue(bounds2.right > bounds1.right);
1133 p.getTextBounds(text1, 0, text1.length(), bounds2);
[all …]