Home | History | Annotate | Download | only in core

Lines Matching refs:doAA

62         Element(const SkRect& rect, SkRegion::Op op, bool doAA) {
63 this->initRect(0, rect, op, doAA);
66 Element(const SkRRect& rrect, SkRegion::Op op, bool doAA) {
67 this->initRRect(0, rrect, op, doAA);
70 Element(const SkPath& path, SkRegion::Op op, bool doAA) {
71 this->initPath(0, path, op, doAA);
212 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) {
213 this->initRRect(saveCount, rrect, op, doAA);
216 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
217 this->initRect(saveCount, rect, op, doAA);
220 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) {
221 this->initPath(saveCount, path, op, doAA);
224 void initCommon(int saveCount, SkRegion::Op op, bool doAA) {
227 fDoAA = doAA;
236 void initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
239 this->initCommon(saveCount, op, doAA);
242 void initRRect(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) {
250 this->initCommon(saveCount, op, doAA);
253 void initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA);
329 void clipDevRect(const SkRect&, SkRegion::Op, bool doAA);
330 void clipDevRRect(const SkRRect&, SkRegion::Op, bool doAA);
331 void clipDevPath(const SkPath&, SkRegion::Op, bool doAA);