Lines Matching refs:fPathRef
60 auto verbs = path.fPathRef->verbsBegin();
85 auto verbs = path.fPathRef->verbsBegin();
95 path.fPathRef->addGenIDChangeListener(std::move(listener));
132 Verbs(const SkPath& path) : fPathRef(path.fPathRef.get()) {}
139 Iter begin() { return Iter{fPathRef->verbsBegin()}; }
140 Iter end() { return Iter{fPathRef->verbsEnd()}; }
144 SkPathRef* fPathRef;
165 : Iterate(path.fPathRef->verbsBegin(),
167 (!path.isFinite()) ? path.fPathRef->verbsBegin()
168 : path.fPathRef->verbsEnd(),
169 path.fPathRef->points(), path.fPathRef->conicWeights()) {
188 return path.fPathRef->verbsBegin();
193 return path.fPathRef->points();
198 return path.fPathRef->countWeights();
203 return path.fPathRef->conicWeights();
208 return path.fPathRef->unique();
236 bool result = path.fPathRef->isOval(rect, &isCCW, start);
264 bool result = path.fPathRef->isRRect(rrect, &isCCW, start);
391 SkPathRef::Editor ed(&path->fPathRef);