Lines Matching defs:verb
977 for (auto [verb, pts, w] : SkPathPriv::Iterate(path)) {
978 switch (verb) {
991 REPORTER_ASSERT(reporter, false, "unexpected quad verb");
994 REPORTER_ASSERT(reporter, false, "unexpected conic verb");
997 REPORTER_ASSERT(reporter, false, "unexpected cubic verb");
3052 auto [verb, pts, w] = *iter++;
3053 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3065 auto [verb, pts, w] = *iter++;
3066 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3071 auto [verb, pts, w] = *iter++;
3072 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3077 auto [verb, pts, w] = *iter++;
3078 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3104 auto [verb, pts, w] = *iter++;
3105 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3110 auto [verb, pts, w] = *iter++;
3111 REPORTER_ASSERT(reporter, verb == SkPathVerb::kClose);
3114 auto [verb, pts, w] = *iter++;
3115 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3120 auto [verb, pts, w] = *iter++;
3121 REPORTER_ASSERT(reporter, verb == SkPathVerb::kClose);
3124 auto [verb, pts, w] = *iter++;
3125 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3130 auto [verb, pts, w] = *iter++;
3131 REPORTER_ASSERT(reporter, verb == SkPathVerb::kMove);
3136 auto [verb, pts, w] = *iter++;
3137 REPORTER_ASSERT(reporter, verb == SkPathVerb::kClose);
3232 SkDEBUGFAIL("unexpected verb");
3244 for (auto [verb, pts, w] : SkPathPriv::Iterate(path)) {
3245 REPORTER_ASSERT(reporter, verb == expectedVerbs[numIterVerbs]);
3247 switch (verb) {
3283 SkDEBUGFAIL("unexpected verb");
4551 for(auto verb : verbs) {
4552 switch (verb) {
5006 static void rand_path(SkPath* path, SkRandom& rand, SkPath::Verb verb, int n) {
5008 switch (verb) {
5040 for (SkPath::Verb verb : verbs) {
5042 rand_path(&path, rand, verb, n);