Home | History | Annotate | Download | only in core

Lines Matching refs:Op

53         Element(const SkRect& rect, SkRegion::Op op, bool doAA) {
54 this->initRect(0, rect, op, doAA);
57 Element(const SkPath& path, SkRegion::Op op, bool doAA) {
58 this->initPath(0, path, op, doAA);
95 SkRegion::Op getOp() const { return fOp; }
105 void setOp(SkRegion::Op op) { fOp = op; }
164 SkRegion::Op fOp;
192 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
193 this->initRect(saveCount, rect, op, doAA);
196 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) {
197 this->initPath(saveCount, path, op, doAA);
200 void initCommon(int saveCount, SkRegion::Op op, bool doAA) {
202 fOp = op;
212 void initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
215 this->initCommon(saveCount, op, doAA);
218 void initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) {
221 this->initCommon(saveCount, op, doAA);
236 inline bool canBeIntersectedInPlace(int saveCount, SkRegion::Op op) const;
302 void clipDevRect(const SkIRect& ir, SkRegion::Op op) {
305 this->clipDevRect(r, op, false);
307 void clipDevRect(const SkRect&, SkRegion::Op, bool doAA);
308 void clipDevPath(const SkPath&, SkRegion::Op, bool doAA);
367 * element. If no clip element with that op is found, the first element is returned.
369 const Element* skipToTopmost(SkRegion::Op op);