Home | History | Annotate | Download | only in core

Lines Matching refs:doAA

68         Element(const SkRect& rect, SkClipOp op, bool doAA) {
69 this->initRect(0, rect, op, doAA);
72 Element(const SkRRect& rrect, SkClipOp op, bool doAA) {
73 this->initRRect(0, rrect, op, doAA);
76 Element(const SkPath& path, SkClipOp op, bool doAA) {
77 this->initPath(0, path, op, doAA);
259 Element(int saveCount, const SkRRect& rrect, SkClipOp op, bool doAA) {
260 this->initRRect(saveCount, rrect, op, doAA);
263 Element(int saveCount, const SkRect& rect, SkClipOp op, bool doAA) {
264 this->initRect(saveCount, rect, op, doAA);
267 Element(int saveCount, const SkPath& path, SkClipOp op, bool doAA) {
268 this->initPath(saveCount, path, op, doAA);
271 void initCommon(int saveCount, SkClipOp op, bool doAA) {
274 fDoAA = doAA;
283 void initRect(int saveCount, const SkRect& rect, SkClipOp op, bool doAA) {
286 this->initCommon(saveCount, op, doAA);
289 void initRRect(int saveCount, const SkRRect& rrect, SkClipOp op, bool doAA) {
297 this->initCommon(saveCount, op, doAA);
300 void initPath(int saveCount, const SkPath& path, SkClipOp op, bool doAA);
405 void clipRect(const SkRect&, const SkMatrix& matrix, SkClipOp, bool doAA);
406 void clipRRect(const SkRRect&, const SkMatrix& matrix, SkClipOp, bool doAA);
407 void clipPath(const SkPath&, const SkMatrix& matrix, SkClipOp, bool doAA);