Lines Matching refs:SkPathVerb
58 case SkPathVerb::kMove: this->moveTo(pts[0]); break; in operator =()
59 case SkPathVerb::kLine: this->lineTo(pts[1]); break; in operator =()
60 case SkPathVerb::kQuad: this->quadTo(pts[1], pts[2]); break; in operator =()
61 case SkPathVerb::kConic: this->conicTo(pts[1], pts[2], w[0]); break; in operator =()
62 case SkPathVerb::kCubic: this->cubicTo(pts[1], pts[2], pts[3]); break; in operator =()
63 case SkPathVerb::kClose: this->close(); break; in operator =()
93 fVerbs.push_back((uint8_t)SkPathVerb::kMove); in moveTo()
104 fVerbs.push_back((uint8_t)SkPathVerb::kLine); in lineTo()
116 fVerbs.push_back((uint8_t)SkPathVerb::kQuad); in quadTo()
128 fVerbs.push_back((uint8_t)SkPathVerb::kConic); in conicTo()
142 fVerbs.push_back((uint8_t)SkPathVerb::kCubic); in cubicTo()
152 fVerbs.push_back((uint8_t)SkPathVerb::kClose); in close()
222 const bool isClosed = (stop[-1] == (uint8_t)SkPathVerb::kClose); in make()
781 memset(fVerbs.append(count), (uint8_t)SkPathVerb::kLine, count); in polylineTo()
835 switch ((SkPathVerb)v) { in privateReverseAddPath()
836 case SkPathVerb::kMove: in privateReverseAddPath()
844 case SkPathVerb::kLine: in privateReverseAddPath()
847 case SkPathVerb::kQuad: in privateReverseAddPath()
850 case SkPathVerb::kConic: in privateReverseAddPath()
853 case SkPathVerb::kCubic: in privateReverseAddPath()
856 case SkPathVerb::kClose: in privateReverseAddPath()