Home | History | Annotate | Download | only in tests

Lines Matching refs:SkPath

11 SubsetPath::SubsetPath(const SkPath& path)
27 bool SubsetPath::subset(bool testFailed, SkPath* sub) {
62 SubsetContours::SubsetContours(const SkPath& path)
64 SkPath::RawIter iter(fPath);
69 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
71 case SkPath::kMove_Verb:
73 case SkPath::kLine_Verb:
74 case SkPath::kQuad_Verb:
75 case SkPath::kConic_Verb:
76 case SkPath::kCubic_Verb:
79 case SkPath::kClose_Verb:
95 SkPath SubsetContours::getSubsetPath() const {
96 SkPath result;
101 SkPath::RawIter iter(fPath);
107 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
113 case SkPath::kMove_Verb:
115 case SkPath::kLine_Verb:
120 case SkPath::kQuad_Verb:
125 case SkPath::kConic_Verb:
130 case SkPath::kCubic_Verb:
135 case SkPath::kClose_Verb:
153 SubsetVerbs::SubsetVerbs(const SkPath& path)
155 SkPath::RawIter iter(fPath);
159 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
161 case SkPath::kMove_Verb:
163 case SkPath::kLine_Verb:
164 case SkPath::kQuad_Verb:
165 case SkPath::kConic_Verb:
166 case SkPath::kCubic_Verb:
169 case SkPath::kClose_Verb:
182 SkPath SubsetVerbs::getSubsetPath() const {
183 SkPath result;
188 SkPath::RawIter iter(fPath);
194 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) {
195 bool enabled = SkPath::kLine_Verb <= verb && verb <= SkPath::kCubic_Verb
207 case SkPath::kMove_Verb:
209 case SkPath::kLine_Verb:
214 case SkPath::kQuad_Verb:
219 case SkPath::kConic_Verb:
224 case SkPath::kCubic_Verb:
229 case SkPath::kClose_Verb: