/third_party/node/deps/npm/node_modules/fs-vacuum/test/ |
D | other-directories-no-purge.js | 22 var testBase, testPath, otherPath variable 29 otherPath = path.resolve(tmpdir, OTHER_PATH) 34 mkdirp(otherPath, function (er) { 64 stat = statSync(otherPath) 65 }, otherPath + ' can be statted') 66 t.ok(stat && stat.isDirectory(), otherPath + ' is still a directory')
|
/third_party/skia/modules/pathkit/tests/ |
D | path.spec.js | 16 let otherPath = drawSimplePath(); 20 expect(otherPath.equals(path)).toBe(true); 21 expect(path.equals(otherPath)).toBe(true); 24 expect(otherPath.equals(blank)).toBe(false); 26 expect(blank.equals(otherPath)).toBe(false); 29 otherPath.delete();
|
D | path2d.spec.js | 130 let otherPath = drawTriangle(); 133 basePath.addPath(otherPath) 135 .addPath(otherPath, 1, 0, 0, 1, 0, 20.5) 138 .addPath(otherPath, 3, 0, 30, 144 otherPath.delete();
|
/third_party/flutter/skia/modules/pathkit/tests/ |
D | path.spec.js | 16 let otherPath = drawSimplePath(); 20 expect(otherPath.equals(path)).toBe(true); 21 expect(path.equals(otherPath)).toBe(true); 24 expect(otherPath.equals(blank)).toBe(false); 26 expect(blank.equals(otherPath)).toBe(false); 29 otherPath.delete();
|
D | path2d.spec.js | 130 let otherPath = drawTriangle(); 133 basePath.addPath(otherPath) 135 .addPath(otherPath, 1, 0, 0, 1, 0, 20.5) 138 .addPath(otherPath, 3, 0, 30, 144 otherPath.delete();
|
/third_party/skia/modules/canvaskit/ |
D | pathops.js | 4 CanvasKit.Path.prototype.op = function(otherPath, op) { argument 5 if (this._op(otherPath, op)) {
|
/third_party/skia/site/docs/user/modules/ |
D | pathkit.md | 321 let otherPath = ...; 322 let clone = PathKit.NewPath(otherPath); 325 // Users can also do let clone = new PathKit.SkPath(otherPath); 326 // or let clone = otherPath.copy(); 377 #### `addPath(otherPath)` 379 **otherPath** - `SkPath`, a path to append to this path 383 #### `addPath(otherPath, transform)` 385 **otherPath** - `SkPath`, a path to append to this path. <br> **transform** - 387 transform to apply to otherPath before appending it. 394 #### `addPath(otherPath, a, b, c, d, e, f)` [all …]
|
/third_party/flutter/skia/site/user/modules/ |
D | pathkit.md | 305 let otherPath = ...; 306 let clone = PathKit.NewPath(otherPath); 309 // Users can also do let clone = new PathKit.SkPath(otherPath); 310 // or let clone = otherPath.copy(); 358 #### `addPath(otherPath)` #### 359 **otherPath** - `SkPath`, a path to append to this path 363 #### `addPath(otherPath, transform)` #### 364 **otherPath** - `SkPath`, a path to append to this path. <br> 366 a transform to apply to otherPath before appending it. 372 #### `addPath(otherPath, a, b, c, d, e, f)` #### [all …]
|
/third_party/skia/modules/pathkit/ |
D | externs.js | 52 _op: function(otherPath, op) {}, argument 101 PathKit.SkPath.prototype.op = function(otherPath, op) {}; argument
|
D | chaining.js | 112 PathKit.SkPath.prototype.op = function(otherPath, op) { argument 113 if (this._op(otherPath, op)) {
|
/third_party/flutter/skia/modules/pathkit/ |
D | externs.js | 52 _op: function(otherPath, op) {}, argument 101 PathKit.SkPath.prototype.op = function(otherPath, op) {}; argument
|
D | chaining.js | 112 PathKit.SkPath.prototype.op = function(otherPath, op) { argument 113 if (this._op(otherPath, op)) {
|
/third_party/flutter/skia/src/core/ |
D | SkStrokerPriv.h | 30 SkPath* otherPath);
|
D | SkStrokerPriv.cpp | 32 const SkPoint& stop, SkPath* otherPath) { in SquareCapper() argument 36 if (otherPath) { in SquareCapper()
|
/third_party/skia/src/core/ |
D | SkStrokerPriv.h | 30 SkPath* otherPath);
|
D | SkStrokerPriv.cpp | 32 const SkPoint& stop, SkPath* otherPath) { in SquareCapper() argument 36 if (otherPath) { in SquareCapper()
|
/third_party/flutter/engine/flutter/flow/ |
D | mutators_stack_unittests.cc | 135 SkPath otherPath; in TEST() local 136 stackOther.PushClipPath(otherPath); in TEST()
|
/third_party/flutter/skia/modules/canvaskit/ |
D | interface.js | 294 CanvasKit.SkPath.prototype.op = function(otherPath, op) { argument 295 if (this._op(otherPath, op)) {
|