Home | History | Annotate | Download | only in core

Lines Matching refs:saveCount

187         Element(int saveCount) {
188 this->initCommon(saveCount, SkRegion::kReplace_Op, false);
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) {
201 fSaveCount = saveCount;
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;
458 void restoreTo(int saveCount);