Lines Matching refs:path

57  * This class is used to maintain a search path of URLs for loading classes
78 /* The original search path of URLs. */
79 private ArrayList<URL> path = new ArrayList<URL>();
84 /* The resulting search path of Loaders */
108 path.add(urls[i]);
137 * Appends the specified URL to the search path of directory and JAR
147 if (url == null || path.contains(url))
151 path.add(url);
156 * Returns the original search path of URLs.
160 return path.toArray(new URL[path.size()]);
165 * Finds the resource with the specified name on the URL search path
185 * Finds the first Resource on the URL search path which has the specified
208 * Finds all resources on the URL search path with the given name.
255 * Finds all resources on the URL search path with the given name.
303 * path. The URLs are opened and expanded as needed. Returns null
310 // Expand URL search path until the request can be satisfied
333 // If the loader defines a local class path then add the
343 // Finally, add the Loader to the search path.
387 * Convert class path specification into an array of file URLs.
389 * The path of the file is encoded before conversion into URL
390 * form so that reserved characters can safely appear in the path.
392 public static URL[] pathToURLs(String path) {
393 StringTokenizer st = new StringTokenizer(path, File.pathSeparator);
581 * Returns the local class path for this loader, or null if none.
679 // if the same URL occurs later on the main class path. We set
899 * account the relative path.
971 * Returns the JAR file local class path, or null if none.
1017 String path = st.nextToken();
1018 urls[i] = new URL(base, path);
1038 String path = url.getFile().replace('/', File.separatorChar);
1039 path = ParseUtil.decode(path);
1040 dir = (new File(path)).getCanonicalFile();
1061 // requested resource had ../..'s in path