Searched defs:isSameFile (Results 1 - 19 of 19) sorted by relevance

/openjdk7/langtools/src/share/classes/javax/tools/
H A DStandardJavaFileManager.java155 boolean isSameFile(FileObject a, FileObject b); method in interface:StandardJavaFileManager
H A DForwardingJavaFileManager.java90 public boolean isSameFile(FileObject a, FileObject b) { method in class:ForwardingJavaFileManager
91 return fileManager.isSameFile(a, b);
H A DJavaFileManager.java200 boolean isSameFile(FileObject a, FileObject b); method in interface:JavaFileManager
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java843 * manner specified by the {@link Files#isSameFile} method.
859 public abstract boolean isSameFile(Path path, Path path2) method in class:FileSystemProvider
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java408 public boolean isSameFile(Path obj1, Path obj2) throws IOException { method in class:WindowsFileSystemProvider
449 return WindowsFileAttributes.isSameFile(attrs1, attrs2);
H A DWindowsFileAttributes.java364 static boolean isSameFile(WindowsFileAttributes attrs1, method in class:WindowsFileAttributes
/openjdk7/jdk/test/demo/zipfs/
H A DPathOps.java196 PathOps isSameFile(String target) { method in class:PathOps
200 check(Files.isSameFile(path, test(target).path()), true);
407 // isSameFile
409 .isSameFile("/fileDoesNotExist");
/openjdk7/jdk/test/java/nio/file/spi/
H A DTestProvider.java167 public boolean isSameFile(Path file, Path other) throws IOException { method in class:TestProvider
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/nio/
H A DPathFileObject.java269 public boolean isSameFile(PathFileObject other) { method in class:PathFileObject
271 return Files.isSameFile(path, other.path);
H A DJavacPathFileManager.java294 public boolean isSameFile(FileObject a, FileObject b) { method in class:JavacPathFileManager
301 return ((PathFileObject) a).isSameFile((PathFileObject) b);
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java228 public boolean isSameFile(Path path, Path other) throws IOException { method in class:ZipFileSystemProvider
229 return toZipPath(path).isSameFile(other);
H A DZipPath.java723 boolean isSameFile(Path other) throws IOException { method in class:ZipPath
798 if (Files.isSameFile(this.zfs.getZipFile(), target.zfs.getZipFile()))
812 if (Files.isSameFile(this.zfs.getZipFile(), target.zfs.getZipFile()))
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileAttributes.java91 boolean isSameFile(UnixFileAttributes attrs) { method in class:UnixFileAttributes
H A DUnixFileSystemProvider.java313 public boolean isSameFile(Path obj1, Path obj2) throws IOException { method in class:UnixFileSystemProvider
341 return attrs1.isSameFile(attrs2);
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java1127 * except if the source and target are the {@link #isSameFile same} file, in
1238 * target are the {@link #isSameFile same} file, in which case this method
1428 * {@code isSameFile(f,f)} should return {@code true}.
1430 * {@code isSameFile(f,g)} will equal {@code isSameFile(g,f)}.
1432 * {@code f}, {@code g}, and {@code h}, if {@code isSameFile(f,g)} returns
1433 * {@code true} and {@code isSameFile(g,h)} returns {@code true}, then
1434 * {@code isSameFile(g,h)} will return return {@code true}.
1453 public static boolean isSameFile(Path path, Path path2) throws IOException { method in class:Files
1454 return provider(path).isSameFile(pat
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java338 public boolean isSameFile(Path file, Path other) throws IOException { method in class:PassThroughFileSystem.PassThroughProvider
339 return Files.isSameFile(unwrap(file), unwrap(other));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DClientCodeWrapper.java236 public boolean isSameFile(FileObject a, FileObject b) { method in class:ClientCodeWrapper.WrappedJavaFileManager
238 return clientJavaFileManager.isSameFile(unwrap(a), unwrap(b));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DJavacFileManager.java663 public boolean isSameFile(FileObject a, FileObject b) { method in class:JavacFileManager
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java332 public boolean isSameFile(FileObject a, FileObject b) { method in class:TestClientCodeWrapper.UserFileManager
333 throwUserExceptionIfNeeded(fileManagerMethod, "isSameFile");
334 return super.isSameFile(unwrap(a), unwrap(b));

Completed in 1127 milliseconds