/third_party/skia/modules/canvaskit/htmlcanvas/ |
D | path2d.js | 22 function bezierCurveTo(skpath, cp1x, cp1y, cp2x, cp2y, x, y) { argument 23 if (!allAreFinite([cp1x, cp1y, cp2x, cp2y, x, y])) { 29 skpath.cubicTo(cp1x, cp1y, cp2x, cp2y, x, y); 178 this.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 179 bezierCurveTo(this._path, cp1x, cp1y, cp2x, cp2y, x, y);
|
D | canvas2dcontext.js | 487 this.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 488 bezierCurveTo(this._currentPath, cp1x, cp1y, cp2x, cp2y, x, y);
|
/third_party/flutter/skia/modules/canvaskit/htmlcanvas/ |
D | path2d.js | 22 function bezierCurveTo(skpath, cp1x, cp1y, cp2x, cp2y, x, y) { argument 23 if (!allAreFinite([cp1x, cp1y, cp2x, cp2y, x, y])) { 29 skpath.cubicTo(cp1x, cp1y, cp2x, cp2y, x, y); 177 this.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 178 bezierCurveTo(this._path, cp1x, cp1y, cp2x, cp2y, x, y);
|
D | canvas2dcontext.js | 506 this.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 507 bezierCurveTo(this._currentPath, cp1x, cp1y, cp2x, cp2y, x, y);
|
/third_party/skia/modules/pathkit/ |
D | chaining.js | 62 PathKit.SkPath.prototype.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 63 this._cubicTo(cp1x, cp1y, cp2x, cp2y, x, y); 84 PathKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 85 this._cubicTo(cp1x, cp1y, cp2x, cp2y, x, y);
|
D | externs.js | 48 _cubicTo: function(cp1x, cp1y, cp2x, cp2y, x, y) {}, argument 92 PathKit.SkPath.prototype.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {}; argument 96 PathKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {}; argument
|
/third_party/flutter/skia/modules/pathkit/ |
D | chaining.js | 62 PathKit.SkPath.prototype.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 63 this._cubicTo(cp1x, cp1y, cp2x, cp2y, x, y); 84 PathKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 85 this._cubicTo(cp1x, cp1y, cp2x, cp2y, x, y);
|
D | externs.js | 48 _cubicTo: function(cp1x, cp1y, cp2x, cp2y, x, y) {}, argument 92 PathKit.SkPath.prototype.bezierCurveTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {}; argument 96 PathKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) {}; argument
|
/third_party/skia/modules/canvaskit/ |
D | interface.js | 250 CanvasKit.Path.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 251 this._cubicTo(cp1x, cp1y, cp2x, cp2y, x, y); 308 CanvasKit.Path.prototype.rCubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 309 this._rCubicTo(cp1x, cp1y, cp2x, cp2y, x, y);
|
/third_party/flutter/skia/modules/canvaskit/ |
D | interface.js | 272 CanvasKit.SkPath.prototype.cubicTo = function(cp1x, cp1y, cp2x, cp2y, x, y) { argument 273 this._cubicTo(cp1x, cp1y, cp2x, cp2y, x, y);
|
/third_party/flutter/skia/site/user/modules/ |
D | pathkit.md | 476 #### `cubicTo(cp1x, cp1y, cp2x, cp2y, x, y)` or `bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y)` #### 477 **cp1x, cp1y, cp2x, cp2y** - `Number`, The coordinates defining the control points. <br>
|
/third_party/skia/site/docs/user/modules/ |
D | pathkit.md | 508 #### `cubicTo(cp1x, cp1y, cp2x, cp2y, x, y)` or `bezierCurveTo(cp1x, cp1y, cp2x, cp2y, x, y)` 510 **cp1x, cp1y, cp2x, cp2y** - `Number`, The coordinates defining the control
|
/third_party/node/test/fixtures/wpt/interfaces/ |
D | html.idl | 1374 …void bezierCurveTo(unrestricted double cp1x, unrestricted double cp1y, unrestricted double cp2x, u…
|
/third_party/typescript/lib/ |
D | lib.webworker.d.ts | 863 … bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
|
D | lib.dom.d.ts | 3434 … bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
|
/third_party/typescript/src/lib/ |
D | webworker.generated.d.ts | 843 … bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
|
D | dom.generated.d.ts | 3414 … bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
|
/third_party/typescript/tests/lib/ |
D | lib.d.ts | 5161 … bezierCurveTo(cp1x: number, cp1y: number, cp2x: number, cp2y: number, x: number, y: number): void;
|