Lines Matching defs:big
15 // Draws big rects with clip (0, 0, 35, 35). The size of the rects is given by big.
16 static void draw_big_rect(SkCanvas* canvas, SkScalar big, const SkPaint& rectPaint) {
35 SkRect horiz = SkRect::MakeLTRB(-big, 5, big, 10);
38 SkRect vert = SkRect::MakeLTRB(5, -big, 10, big);
41 SkRect fromLeft = SkRect::MakeLTRB(-big, 20, 17, 25);
44 SkRect fromTop = SkRect::MakeLTRB(20, -big, 25, 17);
47 SkRect fromRight = SkRect::MakeLTRB(28, 20, big, 25);
50 SkRect fromBottom = SkRect::MakeLTRB(20, 28, 25, big);
105 const SkScalar big = SkFloatToScalar(sizes[j]);
106 draw_big_rect(canvas, big, paint);