Lines Matching defs:verb
126 * for (SkPath::Verb verb : SkPathPriv::Verbs(path)) {
158 * for (auto [verb, pts, weights] : SkPathPriv::Iterate(skPath)) {
185 * Returns a pointer to the verb data.
293 // Returns number of valid points for each SkPath::Iter verb
294 static int PtsInIter(unsigned verb) {
305 SkASSERT(verb < SK_ARRAY_COUNT(gPtsInVerb));
306 return gPtsInVerb[verb];
309 // Returns number of valid points for each verb, not including the "starter"
311 static int PtsInVerb(unsigned verb) {
322 SkASSERT(verb < SK_ARRAY_COUNT(gPtsInVerb));
323 return gPtsInVerb[verb];