/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/ |
D | JimfsPath.java | 169 JimfsPath otherPath = checkPath(other); in startsWith() local 170 return otherPath != null in startsWith() 171 && getFileSystem().equals(otherPath.getFileSystem()) in startsWith() 172 && Objects.equals(root, otherPath.root) in startsWith() 173 && startsWith(names, otherPath.names); in startsWith() 183 JimfsPath otherPath = checkPath(other); in endsWith() local 184 if (otherPath == null) { in endsWith() 188 if (otherPath.isAbsolute()) { in endsWith() 189 return compareTo(otherPath) == 0; in endsWith() 191 return startsWith(names.reverse(), otherPath.names.reverse()); in endsWith() [all …]
|
/external/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();
|
/external/skia/modules/canvaskit/ |
D | pathops.js | 4 CanvasKit.Path.prototype.op = function(otherPath, op) { argument 5 if (this._op(otherPath, op)) {
|
/external/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 …]
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
D | ValuePathStatus.java | 80 String otherPath = "//ldml/numbers/decimalFormats[@numberSystem=\"" + numberSystem in isMissingOk() local 84 String otherValue = sourceFile.getWinningValue(otherPath); in isMissingOk()
|
D | CLDRFile.java | 2526 String otherPath = it.next(); 2527 XPathParts other = XPathParts.getFrozenInstance(otherPath); 2536 result = getFullXPath(otherPath);
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/ |
D | DateOrder.java | 174 for (String otherPath : conflictingPaths) { 175 FormatType otherType = FormatType.getType(otherPath); 179 addItem(cldrFile, first, order, otherPath, pathsWithConflictingOrder2sample);
|
D | CheckPlaceHolders.java | 130 String otherPath = path.contains("givenFirst") in checkNameOrder() local 133 String otherValue = checkAccessor.getStringValue(otherPath); in checkNameOrder() 535 String otherPath = path.replace("initialSequence", "initial"); in checkInitialPattern() local 536 String otherValue = checkAccessor.getStringValue(otherPath); in checkInitialPattern()
|
D | ConsoleCheckCLDR.java | 558 Status otherPath = new Status(); in main() local 579 final String sourceLocaleID = file.getSourceLocaleID(path, otherPath); in main() 584 if (!path.equals(otherPath.pathWhereFound)) { in main() 1421 final String otherPath = path == null ? null in showValue() local 1443 + otherPath in showValue()
|
/external/skia/modules/pathkit/ |
D | externs.js | 52 _op: function(otherPath, op) {}, argument 101 PathKit.SkPath.prototype.op = function(otherPath, op) {}; argument
|
D | chaining.js | 109 PathKit.SkPath.prototype.op = function(otherPath, op) { argument 110 if (this._op(otherPath, op)) {
|
/external/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()
|
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ |
D | FilterFactory.java | 167 String otherPath = parts.toString(); in removeRedundantPaths() local 168 if (value.equals(rawFile.getStringValue(otherPath))) { in removeRedundantPaths()
|
/external/fonttools/Lib/fontTools/designspaceLib/ |
D | __init__.py | 2496 def _posixRelativePath(self, otherPath): argument 2497 relative = os.path.relpath(otherPath, os.path.dirname(self.path))
|