Searched defs:relPath (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/security/testlibrary/
H A DCertUtils.java131 * @param relPath relative path containing certs (must end in
136 public static CertPath buildPath(String relPath, String [] fileNames) argument
140 list.add(0, getCertFromFile(relPath + fileNames[i]));
161 * @param relPath relative path containing certs (must end in
167 public static CertStore createStore(String relPath, String [] fileNames) argument
171 certs.add(getCertFromFile(relPath + fileNames[i]));
192 * @param relPath relative path containing CRLs (must end in file.separator)
197 public static CertStore createCRLStore(String relPath, String [] fileNames) argument
201 crls.add(getCRLFromFile(relPath + fileNames[i]));
/openjdk7/langtools/src/share/classes/com/sun/mirror/apt/
H A DFiler.java105 * <tt>loc</tt>, <tt>pkg</tt>, and <tt>relPath</tt>.
115 * @param relPath final pathname components of the file
123 File relPath,
133 * <tt>loc</tt>, <tt>pkg</tt>, and <tt>relPath</tt>.
138 * @param relPath final pathname components of the file
144 File relPath) throws IOException;
121 createTextFile(Location loc, String pkg, File relPath, String charsetName) argument
142 createBinaryFile(Location loc, String pkg, File relPath) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/wsdl/writer/
H A DWSDLPatcher.java98 String relPath = in.getAttributeValue(i);
99 String actualPath = getPatchedImportLocation(relPath);
104 logger.fine("Fixing the relative location:"+relPath
214 * @param relPath relative URI to be resolved
218 private @Nullable String getPatchedImportLocation(String relPath) { argument
219 return docResolver.getLocationFor(null, relPath);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/mirror/apt/
H A DFilerImpl.java228 File relPath,
231 ? relPath
232 : new File(nameToPath(pkg), relPath.getPath());
244 File relPath) throws IOException {
246 ? relPath
247 : new File(nameToPath(pkg), relPath.getPath());
226 createTextFile(Location loc, String pkg, File relPath, String charsetName) argument
242 createBinaryFile(Location loc, String pkg, File relPath) argument
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscgats.c443 cmsBool BuildAbsolutePath(const char *relPath, const char *basePath, char *buffer, cmsUInt32Number MaxLen) argument
449 if (isabsolutepath(relPath)) {
451 strncpy(buffer, relPath, MaxLen);
467 strncpy(tail + 1, relPath, MaxLen - len);

Completed in 3106 milliseconds