Lines Matching defs:path

58  * the URL is called the <i>path</i> component.
173 * defined as <code>path[?query]</code>
190 * The path part of this URL.
192 private transient String path;
278 * to exist on the search path :-
399 path = parts.getPath();
403 this.file = path + "?" + query;
405 this.file = path;
441 * &lt;scheme&gt;://&lt;authority&gt;&lt;path&gt;?&lt;query&gt;#&lt;fragment&gt;
443 * The reference is parsed into the scheme, authority, path, query and
444 * fragment parts. If the path component is empty and the scheme,
455 * treated as absolute and the spec authority and path will replace the
456 * context authority and path. If the authority component is absent in the
460 * If the spec's path component begins with a slash character
462 * path is treated as absolute and the spec path replaces the context path.
464 * Otherwise, the path is treated as a relative path and is appended to the
465 * context path, as described in RFC2396. Also, in this case,
466 * the path is canonicalized through the removal of directory
569 if (context.path != null && context.path.startsWith("/"))
579 path = context.path;
679 path = file.substring(0, q);
681 path = file;
695 * @param path the file on the host
701 String authority, String userInfo, String path,
707 this.file = query == null ? path : path + "?" + query;
709 this.path = path;
732 * Gets the path part of this <code>URL</code>.
734 * @return the path part of this <code>URL</code>, or an
739 return path;
1294 // Construct path and query part
1295 path = null;
1302 path = file.substring(0, q);
1304 path = file;
1310 String path, query, ref;
1319 path = file.substring(0, q);
1321 path = file;
1326 return path;