Home
last modified time | relevance | path

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

/external/jimfs/jimfs/src/main/java/com/google/common/jimfs/
DJimfsPath.java169 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/
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();
/external/skia/modules/canvaskit/
Dpathops.js4 CanvasKit.Path.prototype.op = function(otherPath, op) { argument
5 if (this._op(otherPath, op)) {
/external/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 …]
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DValuePathStatus.java80 String otherPath = "//ldml/numbers/decimalFormats[@numberSystem=\"" + numberSystem in isMissingOk() local
84 String otherValue = sourceFile.getWinningValue(otherPath); in isMissingOk()
DCLDRFile.java2526 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/
DDateOrder.java174 for (String otherPath : conflictingPaths) {
175 FormatType otherType = FormatType.getType(otherPath);
179 addItem(cldrFile, first, order, otherPath, pathsWithConflictingOrder2sample);
DCheckPlaceHolders.java130 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()
DConsoleCheckCLDR.java558 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/
Dexterns.js52 _op: function(otherPath, op) {}, argument
101 PathKit.SkPath.prototype.op = function(otherPath, op) {}; argument
Dchaining.js109 PathKit.SkPath.prototype.op = function(otherPath, op) { argument
110 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/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DFilterFactory.java167 String otherPath = parts.toString(); in removeRedundantPaths() local
168 if (value.equals(rawFile.getStringValue(otherPath))) { in removeRedundantPaths()
/external/fonttools/Lib/fontTools/designspaceLib/
D__init__.py2496 def _posixRelativePath(self, otherPath): argument
2497 relative = os.path.relpath(otherPath, os.path.dirname(self.path))