Home
last modified time | relevance | path

Searched refs:otherPath (Results 1 – 18 of 18) sorted by relevance

/third_party/node/deps/npm/node_modules/fs-vacuum/test/
Dother-directories-no-purge.js22 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/
Dpath.spec.js16 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();
Dpath2d.spec.js130 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/
Dpath.spec.js16 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();
Dpath2d.spec.js130 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/
Dpathops.js4 CanvasKit.Path.prototype.op = function(otherPath, op) { argument
5 if (this._op(otherPath, op)) {
/third_party/skia/site/docs/user/modules/
Dpathkit.md321 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/
Dpathkit.md305 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/
Dexterns.js52 _op: function(otherPath, op) {}, argument
101 PathKit.SkPath.prototype.op = function(otherPath, op) {}; argument
Dchaining.js112 PathKit.SkPath.prototype.op = function(otherPath, op) { argument
113 if (this._op(otherPath, op)) {
/third_party/flutter/skia/modules/pathkit/
Dexterns.js52 _op: function(otherPath, op) {}, argument
101 PathKit.SkPath.prototype.op = function(otherPath, op) {}; argument
Dchaining.js112 PathKit.SkPath.prototype.op = function(otherPath, op) { argument
113 if (this._op(otherPath, op)) {
/third_party/flutter/skia/src/core/
DSkStrokerPriv.h30 SkPath* otherPath);
DSkStrokerPriv.cpp32 const SkPoint& stop, SkPath* otherPath) { in SquareCapper() argument
36 if (otherPath) { in SquareCapper()
/third_party/skia/src/core/
DSkStrokerPriv.h30 SkPath* otherPath);
DSkStrokerPriv.cpp32 const SkPoint& stop, SkPath* otherPath) { in SquareCapper() argument
36 if (otherPath) { in SquareCapper()
/third_party/flutter/engine/flutter/flow/
Dmutators_stack_unittests.cc135 SkPath otherPath; in TEST() local
136 stackOther.PushClipPath(otherPath); in TEST()
/third_party/flutter/skia/modules/canvaskit/
Dinterface.js294 CanvasKit.SkPath.prototype.op = function(otherPath, op) { argument
295 if (this._op(otherPath, op)) {