Home | History | Annotate | Download | only in pathops

Lines Matching full:verb

70     SkPath::Verb verb;
73 verb = iter.next(pts);
74 switch (verb) {
79 fPathVerbs.push_back(verb);
93 verb = SkReduceOrder::Quad(curve, pts);
94 if (verb == SkPath::kMove_Verb) {
114 verb = SkReduceOrder::Cubic(curve, pts);
115 if (verb == SkPath::kMove_Verb) {
126 fPathVerbs.push_back(verb);
127 int ptCount = SkPathOpsVerbToPoints(verb);
131 } while (verb != SkPath::kDone_Verb);
148 SkPath::Verb verb;
149 while ((verb = (SkPath::Verb) *verbPtr) != SkPath::kDone_Verb) {
154 switch (verb) {
186 SkDEBUGFAIL("bad verb");
189 pointsPtr += SkPathOpsVerbToPoints(verb);