Home | History | Annotate | Download | only in tests

Lines Matching refs:bounds

19     {{2, 0, 4, 1}, {3, 0, 3, 0}},  // intersecting an empty bounds is OK
49 SkPathOpsBounds bounds;
50 bounds.setEmpty();
51 bounds.add(1, 2, 3, 4);
54 REPORTER_ASSERT(reporter, bounds == expected);
55 bounds.setEmpty();
58 bounds.add(ordinal);
59 REPORTER_ASSERT(reporter, bounds == expected);
60 bounds.setEmpty();
62 bounds.add(botRight);
63 REPORTER_ASSERT(reporter, bounds == expected);
67 curve.setQuadBounds(curvePts, 1, 0, 1, &bounds);
69 REPORTER_ASSERT(reporter, bounds == expected);
71 curve.setCubicBounds(curvePts, 1, 0, 1, &bounds);
73 REPORTER_ASSERT(reporter, bounds == expected);