Searched refs:isFile (Results 1 - 25 of 106) sorted by relevance

12345

/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFSymbol.java125 public boolean isFile(); method in interface:COFFSymbol
127 /** This should only be called if {@link #isFile} returns
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DCacheFSInfo.java81 public boolean isFile(Path file) { method in class:CacheFSInfo
83 return e.isFile;
107 e.isFile = super.isFile(file);
119 boolean isFile; field in class:CacheFSInfo.Entry
/openjdk9/jdk/src/java.smartcardio/unix/classes/sun/security/smartcardio/
H A DPlatformPCSC.java108 if (new File(lib).isFile()) {
113 if (new File(lib).isFile()) {
118 if (new File(lib).isFile()) {
/openjdk9/nashorn/test/script/nosecurity/
H A DJDK-8050964.js55 if (! new File(jdepsPath).isFile()) {
H A DJDK-8130127.js43 if (!new File(jjs).isFile()) {
/openjdk9/nashorn/samples/
H A Dfxmlrunner.js43 if (!$OPTIONS._fx || !file || !new File(file).isFile()) {
H A Dprettyprinter.js40 if (! file.isFile()) {
/openjdk9/jdk/src/jdk.internal.jvmstat/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DPerfDataFile.java121 return ((candidate.isDirectory() || candidate.isFile())
142 } else if (f.exists() && f.isFile()) {
154 if (candidate.exists() && candidate.isFile()
197 if (f.exists() && f.isFile() && f.canRead()) {
214 if (f.exists() && f.isFile() && f.canRead()) {
H A DLocalVmManager.java158 if (files[j].isFile() && files[j].canRead()) {
177 if (files[j].isFile() && files[j].canRead()) {
189 if (files[j].isFile() && files[j].canRead()) {
/openjdk9/jdk/test/javax/sound/sampled/spi/AudioFileWriter/
H A DWriterCloseInput.java81 static void test(AudioFileFormat.Type fileType, int length, boolean isFile) { argument
85 + ", output: " + (isFile ? "File" : "OutputStream"));
92 if (isFile) {
/openjdk9/jdk/test/java/io/File/
H A DWinDeviceName.java52 if (f.isFile()) {
59 throw new RuntimeException("isFile() returns true for " +
H A DBasic.java61 showBoolean("isFile", f.isFile());
73 if (!f.isFile()) fail(f, "is not a file");
102 if (thisDir.isFile()) fail(thisDir, "is a file");
H A DUnicode.java68 if (! f.isFile()) fail("! f.isFile()");
H A DSymLinks.java162 assertTrue(file.isFile());
276 assertTrue(file.isFile());
277 assertTrue(link2file.isFile());
278 assertTrue(link2link2file.isFile());
/openjdk9/jdk/test/com/sun/management/HotSpotDiagnosticMXBean/
H A DDumpHeap.java66 assertTrue(dump.exists() && dump.isFile(), "Could not create dump file");
/openjdk9/nashorn/test/script/currently-failing/
H A DJDK-8055034.js50 if (! new File(jjsCmd).isFile()) {
/openjdk9/hotspot/test/serviceability/dcmd/gc/
H A DHeapDumpTest.java67 Assert.assertTrue(dump.exists() && dump.isFile(), "Could not create dump file " + dump.getAbsolutePath());
71 Assert.assertTrue(out != null && out.exists() && out.isFile(), "Could not find hprof parser output file");
/openjdk9/jdk/src/java.base/share/classes/sun/security/tools/
H A DPathList.java102 if (!file.isFile()) {
/openjdk9/test/lib/jdk/test/lib/hprof/
H A DHprofParser.java44 if (!dump.exists() || !dump.isFile()) {
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/
H A DMimeLauncher.java179 if (f.isFile()) {
197 if (f.isFile()) {
/openjdk9/hotspot/test/runtime/modules/PatchModule/
H A DBasicJarBuilder.java89 if (!jarFile.isFile()) {
/openjdk9/jdk/test/java/net/URLClassLoader/closetest/
H A DCommon.java42 if (!src.isFile()) {
/openjdk9/langtools/test/tools/javap/
H A DT6474890.java72 if (file.isFile()) {
/openjdk9/jdk/test/javax/swing/JFileChooser/8013442/
H A DTest8013442.java54 return !file.isFile() || file.getName().toLowerCase().endsWith(".txt");
/openjdk9/test/lib/jdk/test/lib/
H A DFileInstaller.java88 if (!file.toFile().isFile()) {

Completed in 228 milliseconds

12345