Home | History | Annotate | Download | only in core

Lines Matching refs:doAA

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);
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) {
203 fDoAA = doAA;
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);
307 void clipDevRect(const SkRect&, SkRegion::Op, bool doAA);
308 void clipDevPath(const SkPath&, SkRegion::Op, bool doAA);