Searched refs:relPath (Results 1 - 11 of 11) sorted by relevance

/openjdk10/jdk/test/java/security/testlibrary/
H A DCertUtils.java146 * @param relPath relative path containing certs (must end in
151 public static CertPath buildPath(String relPath, String [] fileNames) argument
155 list.add(0, getCertFromFile(relPath + fileNames[i]));
176 * @param relPath relative path containing certs (must end in
182 public static CertStore createStore(String relPath, String [] fileNames) argument
186 certs.add(getCertFromFile(relPath + fileNames[i]));
207 * @param relPath relative path containing CRLs (must end in file.separator)
212 public static CertStore createCRLStore(String relPath, String [] fileNames) argument
216 crls.add(getCRLFromFile(relPath + fileNames[i]));
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLPatcher.java99 String relPath = in.getAttributeValue(i);
100 String actualPath = getPatchedImportLocation(relPath);
105 logger.fine("Fixing the relative location:"+relPath
219 * @param relPath relative URI to be resolved
223 private @Nullable String getPatchedImportLocation(String relPath) { argument
224 return docResolver.getLocationFor(null, relPath);
H A DWSDLGenerator.java1149 String relPath = calculateRelativePath(uriPath, basePath);
1151 if (relPath == null)
1154 relUri.append(relPath);
/openjdk10/jdk/test/tools/launcher/modules/validate/
H A DValidateModulesTest.java130 private void touch(Path dir, String relPath) throws IOException { argument
131 Path file = dir.resolve(relPath.replace('/', File.separatorChar));
/openjdk10/langtools/test/tools/javac/file/zip/
H A DT8076104.java105 void assertFileContent(String relPath, argument
109 .getResource(StandardLocation.CLASS_PATH, "", relPath);
/openjdk10/jdk/test/sun/security/pkcs11/fips/
H A DCipherTest.java417 String relPath;
419 relPath = pathToStoresSH;
421 relPath = pathToStores;
423 PATH = new File(System.getProperty("test.src", "."), relPath);
/openjdk10/jdk/test/javax/net/ssl/sanity/interop/
H A DCipherTest.java417 String relPath;
419 relPath = pathToStoresSH;
421 relPath = pathToStores;
423 PATH = new File(System.getProperty("test.src", "."), relPath);
/openjdk10/jdk/test/sun/security/pkcs11/sslecc/
H A DCipherTest.java431 String relPath;
433 relPath = pathToStoresSH;
435 relPath = pathToStores;
437 PATH = new File(TEST_SRC, relPath);
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jmod/
H A DJmodTask.java777 Path relPath = path.relativize(file);
778 if (relPath.toString().equals(MODULE_INFO)
782 if (!relPath.toString().equals(MODULE_INFO)
783 && !matches(relPath, excludes)) {
785 out.writeEntry(in, section, relPath.toString());
789 relPath.toString(), section);
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/builder/
H A DDefaultImageBuilder.java417 Path relPath = source.getParent().relativize(target);
418 writeSymLinkEntry(root.resolve(source), relPath);
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/bind/v2/schemagen/
H A DXmlSchemaGenerator.java1572 String relPath = calculateRelativePath(uriPath, basePath, fixNull(theUri.getScheme()).equals("file"));
1574 if (relPath == null)
1577 relUri.append(relPath);

Completed in 214 milliseconds