Searched refs:isHidden (Results 1 – 13 of 13) sorted by relevance
64 boolean isHidden(); in isHidden() method
112 builder.add(HIDDEN_NAME, attrs.isHidden()); in readAttributes()167 public boolean isHidden() { in readAttributes() method
345 public boolean isHidden(Path obj) { in isHidden() method in UnixFileSystemProvider
102 public boolean isHidden(Path path) throws IOException { in isHidden() method in MockFileSystemProvider
281 assertFalse(provider.isHidden(filesSetup.getDataFilePath())); in test_isHidden()295 assertFalse(provider.isHidden(filesSetup.getDataFilePath())); in test_isHidden()301 provider.isHidden(null); in test_isHidden_NPE()
151 when(mockFileSystemProvider.isHidden(mockPath)).thenReturn(true); in test_isHidden()152 when(mockFileSystemProvider.isHidden(mockPath2)).thenReturn(false); in test_isHidden()153 assertTrue(Files.isHidden(mockPath)); in test_isHidden()154 assertFalse(Files.isHidden(mockPath2)); in test_isHidden()
887 public abstract boolean isHidden(Path path) throws IOException; in isHidden() method in FileSystemProvider
135 public boolean isHidden() { in isHidden() method in File
80 public boolean isHidden() { throw new RuntimeException("Stub!"); } in isHidden() method in File
120 assertFalse(f.isHidden()); in test_emptyFilename()
1530 public static boolean isHidden(Path path) throws IOException {1531 return provider(path).isHidden(path);
897 public boolean isHidden() { in isHidden() method in File
1125 assertFalse(f1.isHidden()); in test_isHidden()1126 assertTrue(f2.isHidden()); in test_isHidden()