Lines Matching refs:SkPath
16 bool Sk1DPathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath()
35 SkPath1DPathEffect::SkPath1DPathEffect(const SkPath& path, SkScalar advance, in SkPath1DPathEffect()
67 bool SkPath1DPathEffect::filterPath(SkPath* dst, const SkPath& src, in filterPath()
107 static void morphpath(SkPath* dst, const SkPath& src, SkPathMeasure& meas, in morphpath()
109 SkPath::Iter iter(src, false); in morphpath()
111 SkPath::Verb verb; in morphpath()
113 while ((verb = iter.next(srcP)) != SkPath::kDone_Verb) { in morphpath()
115 case SkPath::kMove_Verb: in morphpath()
120 case SkPath::kLine_Verb: in morphpath()
125 case SkPath::kQuad_Verb: in morphpath()
130 case SkPath::kCubic_Verb: in morphpath()
135 case SkPath::kClose_Verb: in morphpath()
152 SkPath path; in CreateProc()
170 SkScalar SkPath1DPathEffect::next(SkPath* dst, SkScalar distance, in next()
207 SkPathEffect* SkPath1DPathEffect::Create(const SkPath& path, SkScalar advance, SkScalar phase, in Create()