Lines Matching refs:_path
145 this._path = null;
147 this._path = CanvasKit.MakePathFromSVGString(path);
149 this._path = path._getPath().copy();
151 this._path = new CanvasKit.SkPath();
155 return this._path;
165 this._path.addPath(path2d._getPath(), [transform.a, transform.c, transform.e,
170 arc(this._path, x, y, radius, startAngle, endAngle, ccw);
174 arcTo(this._path, x1, y1, x2, y2, radius);
178 bezierCurveTo(this._path, cp1x, cp1y, cp2x, cp2y, x, y);
182 closePath(this._path);
187 ellipse(this._path, x, y, radiusX, radiusY, rotation,
192 lineTo(this._path, x, y);
196 moveTo(this._path, x, y);
200 quadraticCurveTo(this._path, cpx, cpy, x, y);
204 rect(this._path, x, y, width, height);