Lines Matching defs:rect
41 explicit Shape(const Rect& rect) { this->setRect(rect); }
42 explicit Shape(const SkRect& rect) { this->setRect(rect); }
54 // simplifications that could be applied to it (e.g. a degenerate round rect with 0 radius
86 bool conservativeContains(const Rect& rect) const;
107 const Rect& rect() const { SkASSERT(this->isRect()); return fRect; }
112 // performs no simplification, so calling setRRect() with a round rect that has isRect() return
127 void setRect(const SkRect& rect) { this->setRect(Rect(rect)); }
128 void setRect(const Rect& rect) {
130 fRect = rect;