Lines Matching refs:rect
76 inline Rect(const SkIRect& rect): // NOLINT, implicit in Rect() argument
77 left(rect.fLeft), in Rect()
78 top(rect.fTop), in Rect()
79 right(rect.fRight), in Rect()
80 bottom(rect.fBottom) { in Rect()
83 inline Rect(const SkRect& rect): // NOLINT, implicit in Rect() argument
84 left(rect.fLeft), in Rect()
85 top(rect.fTop), in Rect()
86 right(rect.fRight), in Rect()
87 bottom(rect.fBottom) { in Rect()
294 friend std::ostream& operator<<(std::ostream& os, const Rect& rect) {
295 if (rect.isEmpty()) {
300 if (rect.left == 0 && rect.top == 0) {
301 return os << "[" << rect.right << " x " << rect.bottom << "]";
304 return os << "[" << rect.left
305 << " " << rect.top
306 << " " << rect.right
307 << " " << rect.bottom << "]";