Lines Matching refs:_path
146 this._path = null;
148 this._path = CanvasKit.Path.MakeFromSVGString(path);
150 this._path = path._getPath().copy();
152 this._path = new CanvasKit.Path();
156 return this._path;
166 this._path.addPath(path2d._getPath(), [transform.a, transform.c, transform.e,
171 arc(this._path, x, y, radius, startAngle, endAngle, ccw);
175 arcTo(this._path, x1, y1, x2, y2, radius);
179 bezierCurveTo(this._path, cp1x, cp1y, cp2x, cp2y, x, y);
183 closePath(this._path);
188 ellipse(this._path, x, y, radiusX, radiusY, rotation,
193 lineTo(this._path, x, y);
197 moveTo(this._path, x, y);
201 quadraticCurveTo(this._path, cpx, cpy, x, y);
205 rect(this._path, x, y, width, height);