Home | History | Annotate | Download | only in core

Lines Matching refs:saveCount

208         Element(int saveCount) {
209 this->initCommon(saveCount, SkRegion::kReplace_Op, false);
213 Element(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) {
214 this->initRRect(saveCount, rrect, op, doAA);
217 Element(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
218 this->initRect(saveCount, rect, op, doAA);
221 Element(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA) {
222 this->initPath(saveCount, path, op, doAA);
225 void initCommon(int saveCount, SkRegion::Op op, bool doAA) {
226 fSaveCount = saveCount;
237 void initRect(int saveCount, const SkRect& rect, SkRegion::Op op, bool doAA) {
240 this->initCommon(saveCount, op, doAA);
243 void initRRect(int saveCount, const SkRRect& rrect, SkRegion::Op op, bool doAA) {
251 this->initCommon(saveCount, op, doAA);
254 void initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA);
260 inline bool canBeIntersectedInPlace(int saveCount, SkRegion::Op op) const;
471 void restoreTo(int saveCount);