Home
last modified time | relevance | path

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

/external/skqp/modules/pathkit/tests/
Dpath.spec.js32 let otherPath = drawSimplePath();
36 expect(otherPath.equals(path)).toBe(true);
37 expect(path.equals(otherPath)).toBe(true);
40 expect(otherPath.equals(blank)).toBe(false);
42 expect(blank.equals(otherPath)).toBe(false);
45 otherPath.delete();
Dpath2d.spec.js147 let otherPath = drawTriangle();
150 basePath.addPath(otherPath)
152 .addPath(otherPath, 1, 0, 0, 1, 0, 20.5)
155 .addPath(otherPath, 3, 0, 30,
161 otherPath.delete();
/external/skia/modules/pathkit/tests/
Dpath.spec.js32 let otherPath = drawSimplePath();
36 expect(otherPath.equals(path)).toBe(true);
37 expect(path.equals(otherPath)).toBe(true);
40 expect(otherPath.equals(blank)).toBe(false);
42 expect(blank.equals(otherPath)).toBe(false);
45 otherPath.delete();
Dpath2d.spec.js147 let otherPath = drawTriangle();
150 basePath.addPath(otherPath)
152 .addPath(otherPath, 1, 0, 0, 1, 0, 20.5)
155 .addPath(otherPath, 3, 0, 30,
161 otherPath.delete();
/external/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 …]
/external/skqp/site/user/modules/
Dpathkit.md306 let otherPath = ...;
307 let clone = PathKit.NewPath(otherPath);
310 // Users can also do let clone = new PathKit.SkPath(otherPath);
311 // or let clone = otherPath.copy();
359 #### `addPath(otherPath)` ####
360 **otherPath** - `SkPath`, a path to append to this path
364 #### `addPath(otherPath, transform)` ####
365 **otherPath** - `SkPath`, a path to append to this path. <br>
367 a transform to apply to otherPath before appending it.
373 #### `addPath(otherPath, a, b, c, d, e, f)` ####
[all …]
/external/cldr/tools/java/org/unicode/cldr/util/
DValuePathStatus.java70 String otherPath = "//ldml/numbers/decimalFormats[@numberSystem=\"" + arguments.value[1] in isMissingOk() local
74 String otherValue = sourceFile.getWinningValue(otherPath); in isMissingOk()
DCLDRFile.java3020 String otherPath = it.next();
3021 other.set(otherPath);
3028 result = getStringValue(otherPath);
3059 String otherPath = (String) it.next();
3060 other.set(otherPath);
3067 result = getFullXPath(otherPath);
/external/cldr/tools/java/org/unicode/cldr/test/
DDateOrder.java174 for (String otherPath : conflictingPaths) {
175 FormatType otherType = FormatType.getType(otherPath);
179 addItem(cldrFile, first, order, otherPath, pathsWithConflictingOrder2sample);
DConsoleCheckCLDR.java627 Status otherPath = new Status(); in main() local
643 final String sourceLocaleID = file.getSourceLocaleID(path, otherPath); in main()
648 if (!path.equals(otherPath.pathWhereFound)) { in main()
1563 final String otherPath = path == null ? null in showValue() local
1583 + otherPath in showValue()
/external/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)) {
/external/skqp/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)) {
/external/skia/src/core/
DSkStrokerPriv.h30 SkPath* otherPath);
DSkStrokerPriv.cpp32 const SkPoint& stop, SkPath* otherPath) { in SquareCapper() argument
36 if (otherPath) { in SquareCapper()
/external/skqp/src/core/
DSkStrokerPriv.h30 SkPath* otherPath);
DSkStrokerPriv.cpp32 const SkPoint& stop, SkPath* otherPath) { in SquareCapper() argument
36 if (otherPath) { in SquareCapper()
/external/cldr/tools/java/org/unicode/cldr/tool/
DFilterFactory.java168 String otherPath = parts.toString(); in removeRedundantPaths() local
169 if (value.equals(rawFile.getStringValue(otherPath))) { in removeRedundantPaths()
/external/skia/modules/canvaskit/
Dinterface.js294 CanvasKit.SkPath.prototype.op = function(otherPath, op) { argument
295 if (this._op(otherPath, op)) {
/external/skqp/experimental/canvaskit/
Dinterface.js295 CanvasKit.SkPath.prototype.op = function(otherPath, op) { argument
296 if (this._op(otherPath, op)) {
/external/fonttools/Lib/fontTools/designspaceLib/
D__init__.py1066 def _posixRelativePath(self, otherPath): argument
1067 relative = os.path.relpath(otherPath, os.path.dirname(self.path))