Searched defs:path (Results 126 - 150 of 363) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DAbstractTreeWriter.java70 * relative path from this generated file to the current or
74 * @param path Directories in this path will be created if they are not
84 String path, String filename,
88 path, filename, DirectoryManager.getRelativePath(pkg.name()));
83 AbstractTreeWriter(ConfigurationImpl configuration, String path, String filename, ClassTree classtree, PackageDoc pkg) argument
H A DPackageTreeWriter.java65 String path, String filename,
69 super(configuration, path, filename,
94 String path = DirectoryManager.getDirectoryPath(pkg);
97 packgen = new PackageTreeWriter(configuration, path, filename, pkg,
173 String path = DirectoryManager.getRelativePath(packagedoc.name(),
175 return getNavLinkPrevious(path + "package-tree.html");
188 String path = DirectoryManager.getRelativePath(packagedoc.name(),
190 return getNavLinkNext(path + "package-tree.html");
64 PackageTreeWriter(ConfigurationImpl configuration, String path, String filename, PackageDoc packagedoc, PackageDoc prev, PackageDoc next) argument
H A DSplitIndexWriter.java55 * Construct the SplitIndexWriter. Uses path to this file and relative path
58 * @param path Path to the file which is getting generated.
60 * @param relpath Relative path from this file to the current directory.
64 String path, String filename,
67 super(configuration, path, filename, relpath, indexbuilder);
83 String path = DirectoryManager.getPath("index-files");
92 path, filename, relpath,
63 SplitIndexWriter(ConfigurationImpl configuration, String path, String filename, String relpath, IndexBuilder indexbuilder, int prev, int next) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DDirectoryManager.java34 * Handle the directory creations and the path string generations.
47 * The file separator string, "/", used in the formation of the URL path.
58 * Given a PackageDoc, return its URL path string.
71 * Given a ClassDoc, return its URL path string.
97 * @return the platform-dependent directory path for the package
116 * @return the platform-dependent directory path for the package
138 * Given a package name (a string), return the path string,
145 * path string will be "com/sun/javadoc".
148 * @return the String URL path
167 * Given two package names as strings, return the relative path
245 getPathNoTrailingSlash(String path) argument
267 createDirectory(Configuration configuration, String path) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DSymbolArchive.java59 if (!name.startsWith(prefix.path)) {
62 name = name.substring(prefix.path.length());
78 RelativeDirectory prefix_subdir = new RelativeDirectory(prefix, subdirectory.path);
97 protected String inferBinaryName(Iterable<? extends File> path) { argument
99 String prefix = ((SymbolArchive) zarch).prefix.path;
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dutils.cpp65 void mkdirs(int oklen, char* path) { argument
67 if (strlen(path) <= (size_t)oklen) return;
70 strcpy(dir, path);
/openjdk7/jdk/src/share/native/java/io/
H A DRandomAccessFile.c51 jobject this, jstring path, jint mode)
63 fileOpen(env, this, path, raf_fd, flags);
50 Java_java_io_RandomAccessFile_open(JNIEnv *env, jobject this, jstring path, jint mode) argument
H A Dio_util.c214 throwFileNotFoundException(JNIEnv *env, jstring path) argument
228 path, why);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DClassPath.java35 * This class is used to represent a class path, which can contain both
47 * The original class path string
52 * List of class path entries
54 private ClassPathEntry[] path; field in class:ClassPath
57 * Build a class path from the specified path string
64 * Build a class path from the specified array of class path
69 * manifest entry will contain a path separator, which would cause
70 * incorrect behavior if the expanded path wer
[all...]
/openjdk7/jdk/test/sun/misc/IoTrace/
H A DIoTraceAgent.java87 public static Object fileReadBegin(String path) { argument
90 return l.fileReadBegin(path);
102 public static Object fileWriteBegin(String path) { argument
105 return l.fileWriteBegin(path);
/openjdk7/jdk/test/sun/net/ftp/
H A DB6427768.java56 public MyFileSystemHandler(String path) { argument
57 currentDir = path;
60 public boolean cd(String path) { argument
61 currentDir = path;
/openjdk7/jdk/src/share/classes/sun/jvmstat/monitor/
H A DHostIdentifier.java146 * transform this to scheme://hostname:port. If a path
160 * optional path and fragment components. we assume that
172 * by a path part, fragment part, or both a path and fragment
209 * @param path the {@link URI#getPath} component of a URI.
219 public HostIdentifier(String scheme, String authority, String path, argument
222 uri = new URI(scheme, authority, path, query, fragment);
286 String path = vmid.getPath();
287 if ((path != null) && (path
[all...]
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DHttpContextImpl.java34 * HttpContext represents a mapping between a protocol (http or https) together with a root URI path
36 * for the protocol/path on the associated HttpServer.
43 private String path; field in class:HttpContextImpl
58 HttpContextImpl (String protocol, String path, HttpHandler cb, ServerImpl server) { argument
59 if (path == null || protocol == null || path.length() < 1 || path.charAt(0) != '/') {
60 throw new IllegalArgumentException ("Illegal value for path or protocol");
63 this.path = path;
[all...]
H A DHttpsServerImpl.java81 public HttpContextImpl createContext (String path, HttpHandler handler) { argument
82 return server.createContext (path, handler);
85 public HttpContextImpl createContext (String path) { argument
86 return server.createContext (path);
89 public void removeContext (String path) throws IllegalArgumentException { argument
90 server.removeContext (path);
/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractWatchService.java65 abstract WatchKey register(Path path, argument
/openjdk7/langtools/test/tools/javac/processing/filer/
H A DTestGetResource2.java94 System.err.println("javac result with composite source path: " + result);
145 private File write(File dir, String path, String contents) throws IOException { argument
146 File f = new File(dir, path);
/openjdk7/langtools/test/tools/javap/classfile/deps/
H A DGetDeps.java43 * -classpath path where to find classes to analyze
120 List<File> getPathFiles(String path) { argument
122 for (String p: path.split(File.pathSeparator)) {
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DClassPath.java79 * Search for classes in given path.
87 SecuritySupport.getSystemProperty("path.separator"));
90 String path = tok.nextToken();
92 if(!path.equals("")) {
93 File file = new File(path);
98 vec.add(new Dir(path));
121 /** @return used class path string
139 private static final void getPathComponents(String path, ArrayList list) { argument
140 if(path != null) {
141 StringTokenizer tok = new StringTokenizer(path, Fil
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DParentLocationPath.java54 public ParentLocationPath(RelativeLocationPath path, Expression step) { argument
55 _path = path;
110 * This method is used to determine if this parent location path is a
171 // Compile path iterator
219 // This is a special case for the //* path with or without predicates
225 final int path = ((Step)_path).getAxis();
227 if ((path == Axis.DESCENDANTORSELF && step == Axis.CHILD) ||
228 (path == Axis.PRECEDING && step == Axis.PARENT)) {
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DXPathVisitor.java59 * @param path The LocationPath object.
62 public boolean visitLocationPath(ExpressionOwner owner, LocPathIterator path) argument
71 * @param path The UnionPath object.
74 public boolean visitUnionPath(ExpressionOwner owner, UnionPathIterator path) argument
80 * Visit a step within a location path.
92 * Visit a predicate within a location path. Note that there isn't a
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/treetable/
H A DAbstractTreeTableModel.java56 public void valueForPathChanged(TreePath path, Object newValue) {} argument
83 protected void fireTreeNodesChanged(Object source, Object[] path, argument
95 e = new TreeModelEvent(source, path,
109 protected void fireTreeNodesInserted(Object source, Object[] path, argument
121 e = new TreeModelEvent(source, path,
135 protected void fireTreeNodesRemoved(Object source, Object[] path, argument
147 e = new TreeModelEvent(source, path,
161 protected void fireTreeStructureChanged(Object source, Object[] path, argument
173 e = new TreeModelEvent(source, path,
/openjdk7/jdk/src/share/classes/javax/swing/
H A DMenuSelectionManager.java85 * @param path an array of <code>MenuElement</code> objects specifying
86 * the selected path
88 public void setSelectedPath(MenuElement[] path) { argument
93 if(path == null) {
94 path = new MenuElement[0];
99 System.out.print("New: "); printMenuElementArray(path);
102 for(i=0,c=path.length;i<c;i++) {
103 if (i < currentSelectionCount && selection.elementAt(i) == path[i])
115 for(i = firstDifference, c = path.length ; i < c ; i++) {
116 if (path[
330 printMenuElementArray(MenuElement path[]) argument
334 printMenuElementArray(MenuElement path[], boolean dumpStack) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DFileInputStream.java55 /* The path of the referenced file (null if the stream is created with a file descriptor) */
56 private final String path; field in class:FileInputStream
76 * the file named by the path name <code>name</code>
114 * with the path represented by the <code>file</code>
141 throw new FileNotFoundException("Invalid file path");
145 this.path = name;
182 path = null;
207 Object traceContext = IoTrace.fileReadBegin(path);
240 Object traceContext = IoTrace.fileReadBegin(path);
269 Object traceContext = IoTrace.fileReadBegin(path);
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DURLStreamHandler.java132 String path = u.getPath();
229 // If the authority is defined then the path is defined by the
232 path = "";
239 // Parse the file path if any
242 path = spec.substring(start, limit);
243 } else if (path != null && path.length() > 0) {
245 int ind = path.lastIndexOf('/');
249 path = path
530 setURL(URL u, String protocol, String host, int port, String authority, String userInfo, String path, String query, String ref) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DFileChannel.java251 * @param path
252 * The path of the file to open or create
264 * If the {@code path} is associated with a provider that does not
281 public static FileChannel open(Path path, argument
286 FileSystemProvider provider = path.getFileSystem().provider();
287 return provider.newFileChannel(path, options, attrs);
303 * @param path
304 * The path of the file to open or create
313 * If the {@code path} is associated with a provider that does not
329 public static FileChannel open(Path path, OpenOptio argument
[all...]

Completed in 65 milliseconds

1234567891011>>