Lines Matching full:bounds
6 const SkRect& bounds) {
8 REPORTER_ASSERT(reporter, p.getBounds() == bounds);
12 REPORTER_ASSERT(reporter, p2.getBounds() == bounds);
17 REPORTER_ASSERT(reporter, other.getBounds() == bounds);
32 SkRect bounds, bounds2;
43 bounds.set(0, 0, SK_Scalar1, SK_Scalar1);
46 p.addRoundRect(bounds, SK_Scalar1, SK_Scalar1);
47 check_convex_bounds(reporter, p, bounds);
51 p.addOval(bounds);
52 check_convex_bounds(reporter, p, bounds);
56 p.addRect(bounds);
57 check_convex_bounds(reporter, p, bounds);
68 REPORTER_ASSERT(reporter, bounds == bounds2);
70 bounds.offset(SK_Scalar1*3, SK_Scalar1*4);
72 REPORTER_ASSERT(reporter, bounds == p.getBounds());
76 bounds.setEmpty();
78 REPORTER_ASSERT(reporter, bounds == bounds2);
81 bounds.set(0, 0, SK_Scalar1/2, SK_Scalar1/2);
82 p.addRect(bounds);