Home | History | Annotate | Download | only in core

Lines Matching refs:Op

208         May be faster than repeated calls to op().
356 /** \enum SkRegion::Op
359 enum Op {
371 /** Replaces SkRegion with the result of SkRegion op rect.
375 @param op operator, one of:
380 bool op(const SkIRect& rect, Op op) {
381 if (this->isRect() && kIntersect_Op == op) {
387 return this->op(*this, rect, op);
390 /** Replaces SkRegion with the result of SkRegion op SkIRect (left, top, right, bottom).
397 @param op operator, one of:
402 bool op(int left, int top, int right, int bottom, Op op) {
405 return this->op(*this, rect, op);
408 /** Replaces SkRegion with the result of SkRegion op rgn.
412 @param op operator, one of:
417 bool op(const SkRegion& rgn, Op op) { return this->op(*this, rgn, op); }
419 /** Replaces SkRegion with the result of rect op rgn.
424 @param op operator, one of:
429 bool op(const SkIRect& rect, const SkRegion& rgn, Op op);
431 /** Replaces SkRegion with the result of rgn op rect.
436 @param op operator, one of:
441 bool op(const SkRegion& rgn, const SkIRect& rect, Op op);
443 /** Replaces SkRegion with the result of rgna op rgnb.
448 @param op operator, one of:
453 bool op(const SkRegion& rgna, const SkRegion& rgnb, Op op);
669 static bool Oper(const SkRegion&, const SkRegion&, SkRegion::Op, SkRegion*);