Searched refs:getFile (Results 1 - 25 of 150) sorted by relevance

123456

/openjdk10/jdk/src/java.base/windows/classes/jdk/internal/loader/
H A DFileURLMapper.java60 String rest = url.getFile();
61 String s = host + ParseUtil.decode (url.getFile());
65 String path = url.getFile().replace('/', '\\');
/openjdk10/jaxws/src/jdk.xml.ws/share/classes/com/sun/tools/internal/ws/wscompile/
H A DWSCodeWriter.java49 protected File getFile(JPackage pkg, String fileName ) throws IOException { method in class:WSCodeWriter
50 File f = super.getFile(pkg, fileName);
/openjdk10/jdk/test/tools/lib/tests/
H A DResult.java47 public Path getFile() { method in class:Result
58 throw new AssertionError("Failure expected: " + getFile());
62 throw new AssertionError("Abnormal exit: " + getFile());
82 return getFile();
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/validation/
H A DSchemaTest.java54 factory.newSchema(new File(getClass().getResource("Bug8149915.xsd").getFile()));
H A DMultiOccursTest.java62 Schema schema = factory.newSchema(new File(getClass().getResource("multi-occurs.xsd").getFile()));
89 File xmlFile = new File(getClass().getResource("multi-occurs-ok.xml").getFile());
105 File xmlFile = new File(getClass().getResource("multi-occurs-error-min.xml").getFile());
121 File xmlFile = new File(getClass().getResource("multi-occurs-error-max.xml").getFile());
137 File xmlFile = new File(getClass().getResource("multi-occurs-error-min-max.xml").getFile());
H A DOccursWildcardTest.java62 Schema schema = factory.newSchema(new File(getClass().getResource("occurs-wildcard.xsd").getFile()));
89 File xmlFile = new File(getClass().getResource("occurs-ok.xml").getFile());
105 File xmlFile = new File(getClass().getResource("occurs-error-min.xml").getFile());
121 File xmlFile = new File(getClass().getResource("occurs-error-max.xml").getFile());
137 File xmlFile = new File(getClass().getResource("occurs-error-min-max.xml").getFile());
H A DOccursTest.java62 Schema schema = factory.newSchema(new File(getClass().getResource("occurs.xsd").getFile()));
89 File xmlFile = new File(getClass().getResource("occurs-ok.xml").getFile());
105 File xmlFile = new File(getClass().getResource("occurs-error-min.xml").getFile());
121 File xmlFile = new File(getClass().getResource("occurs-error-max.xml").getFile());
137 File xmlFile = new File(getClass().getResource("occurs-error-min-max.xml").getFile());
H A DOccursWildcardUnbounded.java62 Schema schema = factory.newSchema(new File(getClass().getResource("occurs-wildcard-unbounded.xsd").getFile()));
89 File xmlFile = new File(getClass().getResource("occurs-unbounded-ok.xml").getFile());
105 File xmlFile = new File(getClass().getResource("occurs-unbounded-error-min.xml").getFile());
H A DMultiOccursUnboundedTest.java62 Schema schema = factory.newSchema(new File(getClass().getResource("multi-occurs-unbounded.xsd").getFile()));
89 File xmlFile = new File(getClass().getResource("multi-occurs-unbounded-ok.xml").getFile());
105 File xmlFile = new File(getClass().getResource("multi-occurs-unbounded-error-min.xml").getFile());
H A DOccursUnboundedTest.java62 Schema schema = factory.newSchema(new File(getClass().getResource("occurs-unbounded.xsd").getFile()));
89 File xmlFile = new File(getClass().getResource("occurs-unbounded-ok.xml").getFile());
105 File xmlFile = new File(getClass().getResource("occurs-unbounded-error-min.xml").getFile());
H A DTCKGroupA008Test.java54 File schemaLocation = new File(getClass().getResource("groupA008.xsd").getFile());
/openjdk10/jdk/test/sun/net/www/ftptest/
H A DFtpFileSystemHandler.java60 public java.io.InputStream getFile(String name); method in interface:FtpFileSystemHandler
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/transform/
H A DSourceTest.java53 String xml = getClass().getResource("SourceTest.xml").getFile();
55 File xsl = new File(getClass().getResource("SourceTest.xsl").getFile());
87 String xml = getClass().getResource("SourceTest.xml").getFile();
88 File xsl = new File(getClass().getResource("SourceTest.xsl").getFile());
120 String xml = getClass().getResource("SourceTest.xml").getFile();
121 File xsl = new File(getClass().getResource("SourceTest.xsl").getFile());
H A DCR6941869Test.java51 File xml = new File(getClass().getResource("CR6941869.xml").getFile());
52 File xsl = new File(getClass().getResource("CR6941869.xsl").getFile());
H A DCR6652519Test.java56 File file = new File(getClass().getResource("msgAttach.xml").getFile());
73 Document doc = db.parse(new File(getClass().getResource("msgAttach.xml").getFile()));
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java43 return getFile().getHeader().getFileType() == ELFHeader.FT_DYN;
108 ELFSymbol sym = getFile().getHeader().getELFSymbol(offset);
125 ELFSymbol sym = getFile().getHeader().getELFSymbol(symbol);
150 protected ELFFile getFile() { method in class:DSO
/openjdk10/jdk/test/com/sun/security/auth/login/ConfigFile/
H A DIllegalURL.java47 new FileInputStream(new URL(f).getFile().replace('/', File.separatorChar))) {
/openjdk10/jdk/test/java/io/File/
H A DToURL.java38 String ufn = u.getFile();
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/protocol/jar/
H A DHandler.java65 String file1 = u1.getFile();
66 String file2 = u2.getFile();
103 String file = u.getFile();
137 file = url.getFile();
185 String ctxFile = url.getFile();
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DCodeSource.java291 * <li> If this object's file (getLocation().getFile()) doesn't equal
421 if (location.getFile().endsWith("/-")) {
426 String thisPath = location.getFile().substring(0,
427 location.getFile().length()-1);
428 if (!that.location.getFile().startsWith(thisPath))
430 } else if (location.getFile().endsWith("/*")) {
435 int last = that.location.getFile().lastIndexOf('/');
438 String thisPath = location.getFile().substring(0,
439 location.getFile().length()-1);
440 String thatPath = that.location.getFile()
[all...]
/openjdk10/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DPackage.java127 return binaryPath.getFile(makeName(fileName));
137 return sourcePath.getFile(makeName(fileName));
142 return sourcePath.getFile(makeName(fileName));
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DDLL.java67 return getFile().getHeader().hasCharacteristic(Characteristics.IMAGE_FILE_DLL);
155 getFile().close();
163 private COFFFile getFile() { method in class:DLL
197 getFile().getHeader().getOptionalHeader().getDataDirectories().getExportDirectoryTable();
/openjdk10/jaxws/src/java.activation/share/classes/javax/activation/
H A DURLDataSource.java91 * Calls the <code>getFile</code> method on the URL used to
94 * @return the result of calling the URL's getFile method.
97 return url.getFile();
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/oracle/xmlns/internal/webservices/jaxws_databinding/
H A DXmlHandlerChain.java71 public String getFile() { method in class:XmlHandlerChain
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/parsers/
H A DBug6608841.java53 String file = getClass().getResource("Bug6608841.xml").getFile();

Completed in 288 milliseconds

123456