Searched refs:resolveSibling (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/nio/file/Path/
H A DPathOps.java171 PathOps resolveSibling(String other, String expected) { method in class:PathOps
172 out.format("test resolveSibling %s\n", other);
174 check(path.resolveSibling(other), expected);
467 // resolveSibling
469 .resolveSibling("bar", "bar")
470 .resolveSibling("D:\\bar", "D:\\bar")
471 .resolveSibling("\\\\server\\share\\bar", "\\\\server\\share\\bar")
472 .resolveSibling("C:bar", "C:bar")
473 .resolveSibling("D:foo", "D:foo")
474 .resolveSibling("", "");
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractPath.java57 public final Path resolveSibling(Path other) { method in class:AbstractPath
65 public final Path resolveSibling(String other) { method in class:AbstractPath
66 return resolveSibling(getFileSystem().getPath(other));
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DPath.java53 * defines the {@link #resolve(Path) resolve} and {@link #resolveSibling(Path)
54 * resolveSibling} methods to combine paths. The {@link #relativize relativize}
399 Path resolveSibling(Path other); method in interface:Path
404 * specified by the {@link #resolveSibling(Path) resolveSibling} method.
416 Path resolveSibling(String other); method in interface:Path
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java446 public Path resolveSibling(Path other) { method in class:PassThroughFileSystem.PassThroughPath
447 return wrap(delegate.resolveSibling(unwrap(other)));
451 public Path resolveSibling(String other) { method in class:PassThroughFileSystem.PassThroughPath
452 return wrap(delegate.resolveSibling(other));
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipPath.java300 public Path resolveSibling(Path other) { method in class:ZipPath
352 public final Path resolveSibling(String other) { method in class:ZipPath
353 return resolveSibling(getFileSystem().getPath(other));

Completed in 1551 milliseconds