Lines Matching refs:bounds
88 SkRect bounds; in make_images() local
89 font.measureText(text, strlen(text), SkTextEncoding::kUTF8, &bounds); in make_images()
90 return bounds; in make_images()
94 SkRect bounds; in make_images() local
96 bounds = measure("top"); in make_images()
97 drawLabel("top", midX - bounds.centerX(), -bounds.top() + kPad); in make_images()
99 bounds = measure("bottom"); in make_images()
100 drawLabel("bottom", midX - bounds.centerX(), kImgH - kPad - bounds.bottom()); in make_images()
105 bounds = measure("left"); in make_images()
106 drawLabel("left", kPad - bounds.left(), baseY); in make_images()
108 bounds = measure("right"); in make_images()
109 drawLabel("right", kImgW - kPad - bounds.right(), baseY); in make_images()
112 bounds = measure(num.c_str()); in make_images()
113 drawLabel(num.c_str(), midX - bounds.centerX(), baseY); in make_images()