Home
last modified time | relevance | path

Searched refs:path2 (Results 1 – 5 of 5) sorted by relevance

/libcore/luni/src/test/filesystems/src/mypackage/
DMockFileSystemProvider.java97 public boolean isSameFile(Path path, Path path2) throws IOException { in isSameFile() argument
/libcore/luni/src/test/java/libcore/java/nio/file/spi/
DFileSystemProviderTest.java102 public boolean isSameFile(Path path, Path path2) throws IOException { in isSameFile() argument
/libcore/ojluni/src/main/java/java/nio/file/spi/
DFileSystemProvider.java865 public abstract boolean isSameFile(Path path, Path path2) in isSameFile() argument
/libcore/ojluni/src/main/java/java/nio/file/
DFiles.java1503 public static boolean isSameFile(Path path, Path path2) throws IOException {
1504 return provider(path).isSameFile(path, path2);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
DFileTest.java1022 String path2 = new File(new File(""), "").getPath(); in test_getPath() local
1023 assertTrue(path2.equals(File.separator) || path2.isEmpty()); in test_getPath()