Lines Matching refs:moveTo
22 void moveTo(double x, double y);
52 void SkJSCanvas::moveTo(double x, double y) { in moveTo() function in SkJSCanvas
53 fPath.moveTo(SkDoubleToScalar(x), SkDoubleToScalar(y)); in moveTo()
88 path.reset(); path.moveTo(0, 0); in test_stroke()
90 path.reset(); path.moveTo(100, 100); in test_stroke()
92 path.reset(); path.moveTo(0, 0); path.moveTo(100, 100); in test_stroke()
94 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100); in test_stroke()
96 path.reset(); path.moveTo(0, 0); path.lineTo(100, 100); path.moveTo(200, 200); in test_stroke()
112 ctx.moveTo(10, 100); in test_stroke()
138 ctx.moveTo(10, 100); in test_stroke()
144 ctx.moveTo(175, 125); in test_stroke()
163 ctx.moveTo(10, 100); in test_stroke()
169 ctx.moveTo(175, 125); in test_stroke()