• Home
  • Raw
  • Download

Lines Matching refs:SkPath

10 SubsetPath::SubsetPath(const SkPath& path)  in SubsetPath()
26 bool SubsetPath::subset(bool testFailed, SkPath* sub) { in subset()
61 SubsetContours::SubsetContours(const SkPath& path) in SubsetContours()
63 SkPath::RawIter iter(fPath); in SubsetContours()
68 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { in SubsetContours()
70 case SkPath::kMove_Verb: in SubsetContours()
72 case SkPath::kLine_Verb: in SubsetContours()
73 case SkPath::kQuad_Verb: in SubsetContours()
74 case SkPath::kConic_Verb: in SubsetContours()
75 case SkPath::kCubic_Verb: in SubsetContours()
78 case SkPath::kClose_Verb: in SubsetContours()
94 SkPath SubsetContours::getSubsetPath() const { in getSubsetPath()
95 SkPath result; in getSubsetPath()
100 SkPath::RawIter iter(fPath); in getSubsetPath()
106 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { in getSubsetPath()
112 case SkPath::kMove_Verb: in getSubsetPath()
114 case SkPath::kLine_Verb: in getSubsetPath()
119 case SkPath::kQuad_Verb: in getSubsetPath()
124 case SkPath::kConic_Verb: in getSubsetPath()
129 case SkPath::kCubic_Verb: in getSubsetPath()
134 case SkPath::kClose_Verb: in getSubsetPath()
152 SubsetVerbs::SubsetVerbs(const SkPath& path) in SubsetVerbs()
154 SkPath::RawIter iter(fPath); in SubsetVerbs()
158 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { in SubsetVerbs()
160 case SkPath::kMove_Verb: in SubsetVerbs()
162 case SkPath::kLine_Verb: in SubsetVerbs()
163 case SkPath::kQuad_Verb: in SubsetVerbs()
164 case SkPath::kConic_Verb: in SubsetVerbs()
165 case SkPath::kCubic_Verb: in SubsetVerbs()
168 case SkPath::kClose_Verb: in SubsetVerbs()
181 SkPath SubsetVerbs::getSubsetPath() const { in getSubsetPath()
182 SkPath result; in getSubsetPath()
187 SkPath::RawIter iter(fPath); in getSubsetPath()
193 while ((verb = iter.next(pts)) != SkPath::kDone_Verb) { in getSubsetPath()
194 bool enabled = SkPath::kLine_Verb <= verb && verb <= SkPath::kCubic_Verb in getSubsetPath()
206 case SkPath::kMove_Verb: in getSubsetPath()
208 case SkPath::kLine_Verb: in getSubsetPath()
213 case SkPath::kQuad_Verb: in getSubsetPath()
218 case SkPath::kConic_Verb: in getSubsetPath()
223 case SkPath::kCubic_Verb: in getSubsetPath()
228 case SkPath::kClose_Verb: in getSubsetPath()