Home | History | Annotate | Download | only in pathops

Lines Matching defs:set

30     void set(const SkDQuad& quad) {
38 void set(const SkDCubic& cubic) {
88 line.set(a);
94 quad.set(a);
100 conic.set(a, weight);
106 cubic.set(a);
144 line.set(a);
150 quad.set(a);
156 conic.set(a, weight);
162 cubic.set(a);
200 line.set(a);
207 quad.set(a);
214 conic.set(a, weight);
221 cubic.set(a);
238 line.set(a);
245 quad.set(a);
252 conic.set(a, weight);
259 cubic.set(a);
274 roots[0] = SkIntersections::HorizontalIntercept(line.set(a), y);
280 roots[0] = SkIntersections::VerticalIntercept(line.set(a), x);
286 return SkIntersections::HorizontalIntercept(quad.set(a), y, roots);
291 return SkIntersections::VerticalIntercept(quad.set(a), x, roots);
296 return SkIntersections::HorizontalIntercept(conic.set(a, w), y, roots);
301 return SkIntersections::VerticalIntercept(conic.set(a, w), x, roots);
306 return cubic.set(a).horizontalIntersect(y, roots);
311 return cubic.set(a).verticalIntersect(x, roots);