Home | History | Annotate | Download | only in cts

Lines Matching refs:bounds

61         RectF bounds = new RectF();
62 linePath.computeBounds(bounds, true);
66 Assert.assertEquals(LINE_MIDWAY_POINT, bounds.bottom);
67 Assert.assertEquals(LINE_START_POINT, bounds.left);
68 Assert.assertEquals(LINE_MIDWAY_POINT, bounds.right);
69 Assert.assertEquals(LINE_START_POINT, bounds.top);
73 * Helper method to assert expected values for a bounds derived from createLineGesture
77 void assertLineBoundingBox(RectF bounds) {
80 Assert.assertEquals(LINE_END_POINT, bounds.bottom);
81 Assert.assertEquals(LINE_START_POINT, bounds.left);
82 Assert.assertEquals(LINE_END_POINT, bounds.right);
83 Assert.assertEquals(LINE_START_POINT, bounds.top);