Searched defs:path (Results 101 - 125 of 363) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpServerImpl.java73 public HttpContextImpl createContext (String path, HttpHandler handler) { argument
74 return server.createContext (path, handler);
77 public HttpContextImpl createContext (String path) { argument
78 return server.createContext (path);
81 public void removeContext (String path) throws IllegalArgumentException { argument
82 server.removeContext (path);
/openjdk7/langtools/test/tools/javac/file/
H A DT7068451.java114 static File writeFile(File base, String path, String body) throws IOException { argument
115 File f = new File(base, path);
119 System.err.println("wrote " + path + ": " + body);
/openjdk7/langtools/test/tools/javadoc/6227454/
H A DTest.java67 System.getProperty("java.class.path")
69 + System.getProperty("sun.boot.class.path"),
110 File writeFile(String path, String body) throws IOException { argument
111 File f = new File(path);
/openjdk7/langtools/test/tools/javah/4942232/
H A DTest.java104 File mkdir(String path) { argument
105 File f = new File(path);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DSyntheticRepository.java72 * class path. By default, this is the value returned by
96 private SyntheticRepository(ClassPath path) { argument
97 _path = path;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DFilterParentPath.java54 public FilterParentPath(Expression filterExpr, Expression path) { argument
55 (_path = path).setParent(this);
97 // Wrap single node path in a node set
149 // This is a special case for the //* path with or without predicates
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/
H A DSimpleTreeModel.java80 public void valueForPathChanged(TreePath path, Object newValue) { argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DDefaultSynthStyleFactory.java81 String path, int type) throws PatternSyntaxException {
82 if (path == null) {
83 // Make an empty path match all.
84 path = ".*";
88 path, style, type));
92 path.toLowerCase(), style, type));
151 String path;
154 path = cName;
157 path = idName;
160 if (sa.matches(path)
80 addStyle(DefaultSynthStyle style, String path, int type) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreePath.java33 * identify the path to a node in a tree. The elements of the array
36 * the array of parent directories and the name of the file. The path
43 * path are the objects returned from the {@code TreeModel}. When {@code JTree}
45 * path are {@code TreeNode}s. The following example illustrates extracting
64 * NotSerializableException} is thrown if any elements of the path are
88 /** Last path component. */
93 * identifies the path to a node.
95 * @param path an array of objects representing the path to a node
96 * @throws IllegalArgumentException if {@code path} i
100 TreePath(Object[] path) argument
161 TreePath(Object[] path, int length) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DFileOutputStream.java62 * The path of the referenced file (null if the stream is created with a file descriptor)
64 private final String path; field in class:FileOutputStream
152 * method is called with the path represented by the <code>file</code>
182 * method is called with the path represented by the <code>file</code>
215 throw new FileNotFoundException("Invalid file path");
219 this.path = name;
256 this.path = null;
292 Object traceContext = IoTrace.fileWriteBegin(path);
322 Object traceContext = IoTrace.fileWriteBegin(path);
342 Object traceContext = IoTrace.fileWriteBegin(path);
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DCookieManager.java212 String path = uri.getPath();
213 if (path == null || path.isEmpty()) {
214 path = "/";
217 // apply path-matches rule (RFC 2965 sec. 3.3.4)
220 if (pathMatches(path, cookie.getPath()) &&
294 // If no path is specified, then by default
295 // the path is the directory of the page/doc
296 String path = uri.getPath();
297 if (!path
393 pathMatches(String path, String pathToMatchWith) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/url/
H A DUri.java79 * path = [ abs_path | opaque_part ]
102 * if were a <tt>path</tt> without a leading slash.
113 protected String path; field in class:Uri
167 * Returns the URI's path. The path is never null. Note that a
169 * no authority part) is part of the path. For example, the path
173 return path;
234 i = slash; // skip to path
238 path
[all...]
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DHttpServer.java45 * with a root URI path which represents the
58 * whose path is the longest matching prefix of the request URI's path.
63 * <tr><td><i>Context</i></td><td><i>Context path</i></td></tr>
192 * URI path to a exchange handler on this HttpServer. Once created, all requests
193 * received by the server for the path will be handled by calling
194 * the given handler object. The context is identified by the path, and
197 * The path specifies the root URI path for this context. The first character of path mus
207 createContext(String path, HttpHandler handler) argument
227 createContext(String path) argument
238 removeContext(String path) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rmi/rmid/
H A DExecPermission.java67 * Creates a new ExecPermission object with the specified path.
68 * <i>path</i> is the pathname of a file or directory.
83 * @param path the pathname of the file/directory.
85 public ExecPermission(String path) { argument
86 super(path);
87 init(path);
91 * Creates a new ExecPermission object with the specified path.
92 * <i>path</i> is the pathname of a file or directory.
107 * @param path the pathname of the file/directory.
110 public ExecPermission(String path, Strin argument
213 init(String path) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/jarreorder/
H A DJarReorder.java76 * Command path arguments are
197 // Read the input file a path at a time. # in column 1 is a comment.
199 String path = br.readLine();
200 if (path == null) {
204 path = path.trim();
205 if (path.length() == 0
206 || path.charAt(0) == '#') {
210 if (addClassSuffix && !path.endsWith(".class")) {
211 path
288 cleanFilePath(String path) argument
304 cleanDirPath(String path) argument
[all...]
/openjdk7/jdk/src/macosx/bin/
H A Djexec.c92 /* path to java after popping */
100 int getJavaPath(const char * path, char * buf, int depth);
115 * name, and the original arg[1], which is presumed to be a path to a JAR file.
125 char java[PATH_MAX + 1]; /* path to java binary */
136 /* Get the path to the java binary, which is in a known position relative
149 /* the next argument is the path to the JAR file */
195 * Get the path to the java binary that should be relative to the current path.
198 * path - the input path tha
208 getJavaPath(const char * path, char * buf, int depth) argument
[all...]
/openjdk7/jdk/src/solaris/native/java/io/
H A Dcanonicalize_md.c121 /* Collapse "." and ".." names in the given path wherever possible.
128 collapse(char *path) argument
130 char *names = (path[0] == '/') ? path + 1 : path; /* Preserve first '/' */
184 /* Convert a pathname to canonical form. The input path is assumed to contain
202 /* First try realpath() on the entire path */
209 /* Something's bogus in the original path, so remove names from the end
212 char path[PATH_MAX + 1]; local
214 strncpy(path, origina
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DInheritedChannel.c121 Java_sun_nio_ch_InheritedChannel_open0(JNIEnv *env, jclass cla, jstring path, jint oflag) argument
142 str = JNU_GetStringPlatformChars(env, path, NULL);
150 JNU_ReleaseStringPlatformChars(env, path, str);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPathParser.java31 * A parser of Windows path strings
43 private final String path; field in class:WindowsPathParser.Result
45 Result(WindowsPathType type, String root, String path) { argument
48 this.path = path;
52 * The path type
66 * The normalized path (includes root)
68 String path() { method in class:WindowsPathParser.Result
69 return path;
74 * Parses the given input as a Windows path
163 normalize(StringBuilder sb, String path, int off) argument
203 nextNonSlash(String path, int off, int end) argument
208 nextSlash(String path, int off, int end) argument
[all...]
/openjdk7/jdk/src/windows/javavm/export/
H A Djvm_md.h51 char *path; member in struct:__anon1051
/openjdk7/jdk/src/windows/native/common/
H A Djni_util_md.c34 static void getParent(const TCHAR *path, TCHAR *dest) { argument
35 char* lastSlash = max(strrchr(path, '\\'), strrchr(path, '/'));
40 if (path != dest)
41 strcpy(dest, path);
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djavax_swing_JTree.java72 public void valueForPathChanged(TreePath path, Object newValue) { argument
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/NewImpl/
H A DComHTTPSConnection.java91 * Returns the path to the file obtained from
98 String path = "";
104 path = line.substring(0, index);
114 if (path.length() != 0) {
115 return path;
123 * the file represented by the argument <b>path</b>.
129 * to <b>path</b> could not be loaded.
131 private byte[] getBytes(String path) argument
161 // get path to class file from header
164 String path
[all...]
H A DJavaxHTTPSConnection.java89 * Returns the path to the file obtained from
96 String path = "";
102 path = line.substring(0, index);
112 if (path.length() != 0) {
113 return path;
121 * the file represented by the argument <b>path</b>.
127 * to <b>path</b> could not be loaded.
129 private byte[] getBytes(String path) argument
159 // get path to class file from header
162 String path
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractIndexWriter.java55 * path to this file and relative path from this file.
57 * @param path Path to the file which is getting generated.
59 * @param relpath Relative path from this file to the current directory.
63 String path, String filename,
66 super(configuration, path, filename, relpath);
62 AbstractIndexWriter(ConfigurationImpl configuration, String path, String filename, String relpath, IndexBuilder indexbuilder) argument

Completed in 68 milliseconds

1234567891011>>