Lines Matching refs:SkIRect
17 SkRasterClip(const SkIRect&, bool forceConservativeRects = false);
39 const SkIRect& getBounds() const;
42 bool setRect(const SkIRect&);
44 bool op(const SkIRect&, SkRegion::Op);
54 bool quickContains(const SkIRect& rect) const;
56 return quickContains(SkIRect::MakeLTRB(left, top, right, bottom)); in quickContains()
64 bool quickReject(const SkIRect& rect) const { in quickReject()
65 return !SkIRect::Intersects(this->getBounds(), rect); in quickReject()
111 bool setPath(const SkPath& path, const SkIRect& clip, bool doAA);
113 bool setConservativeRect(const SkRect& r, const SkIRect& clipR, bool isInverse);
154 const SkIRect& getBounds() const { in getBounds()