Lines Matching defs:r
33 #define RECT_ARGS(r) (r).left, (r).top, (r).right, (r).bottom argument
34 #define SK_RECT_ARGS(r) (r).left(), (r).top(), (r).right(), (r).bottom() argument
100 inline void set(const Rect& r) { set(r.left, r.top, r.right, r.bottom); } in set()
102 inline void set(const SkIRect& r) { set(r.left(), r.top(), r.right(), r.bottom()); } in set()
108 bool intersects(float l, float t, float r, float b) const { in intersects()
117 bool intersects(const Rect& r) const { return intersects(r.left, r.top, r.right, r.bottom); } in intersects()
124 void doIntersect(float l, float t, float r, float b) { in doIntersect()
131 void doIntersect(const Rect& r) { doIntersect(r.left, r.top, r.right, r.bottom); } in doIntersect()
133 inline bool contains(float l, float t, float r, float b) const { in contains()
137 inline bool contains(const Rect& r) const { return contains(r.left, r.top, r.right, r.bottom); } in contains()
139 bool unionWith(const Rect& r) { in unionWith()