Lines Matching refs:verb
80 SkPath::Verb verb; in preFetch() local
83 verb = iter.next(pts); in preFetch()
84 switch (verb) { in preFetch()
89 *fPathVerbs.append() = verb; in preFetch()
110 verb = SkReduceOrder::Quad(curve, pts); in preFetch()
111 if (verb == SkPath::kMove_Verb) { in preFetch()
120 verb = SkReduceOrder::Conic(curve, iter.conicWeight(), pts); in preFetch()
121 if (verb == SkPath::kMove_Verb) { in preFetch()
132 verb = SkReduceOrder::Cubic(curve, pts); in preFetch()
133 if (verb == SkPath::kMove_Verb) { in preFetch()
144 *fPathVerbs.append() = verb; in preFetch()
145 int ptCount = SkPathOpsVerbToPoints(verb); in preFetch()
147 if (verb == SkPath::kConic_Verb) { in preFetch()
152 } while (verb != SkPath::kDone_Verb); in preFetch()
170 SkPath::Verb verb; in walk() local
171 while ((verb = (SkPath::Verb) *verbPtr) != SkPath::kDone_Verb) { in walk()
176 switch (verb) { in walk()
244 pointsPtr += SkPathOpsVerbToPoints(verb); in walk()