Searched refs:path (Results 426 - 450 of 594) sorted by relevance

<<11121314151617181920>>

/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DBatchEnvironment.java97 * Create a BatchEnvironment for rmic with the given class path,
100 public BatchEnvironment(OutputStream out, ClassPath path, Main main) { argument
102 super(out,path,main);
134 classPathLoader = new ClassPathLoader(path);
H A DGenerator.java169 ClassPath path = env.getClassPath();
174 baseFile = path.getFile(className + ".source");
180 baseFile = path.getFile(className + ".class");
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.hpp47 // Class path entry (directory or zip file)
53 // Next entry in class path
64 // Attempt to locate file_name through this class path entry.
122 // For lazier loading of boot class path entries
133 LazyClassPathEntry(char* path, struct stat st);
210 static void create_class_path_entry(char *path, struct stat st, ClassPathEntry **new_entry, bool lazy);
212 // Canonicalizes path names, so strcmp will work properly. This is mainly
217 static void update_class_path_entry_list(const char *path,
328 // indicates if class path already contains a entry (exact match by name)
331 // adds a class path lis
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.inline.hpp119 inline int os::readdir_buf_size(const char *path) argument
132 inline char* os::native_path(char *path) { argument
133 return path;
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.inline.hpp123 inline int os::readdir_buf_size(const char *path) argument
136 inline char* os::native_path(char *path) { argument
137 return path;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaFileView.java260 * -Use the HFS-style path from CFURLRef in resolveAlias() to avoid
261 * path length limitations
267 * resolve any aliases in the path, including this file if it is an
274 * In the event of a path that does not contain any aliases, or if the file
276 * @return The canonical path to the file
278 * construct the path
282 // any aliases along its path, so the standard version
290 // path or this is an alias. Traverse the path and
309 final String path
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/
H A DConfigReader.java99 String path = xmlFile.getAbsolutePath();
100 String xmlPath = path.substring(0,path.lastIndexOf(File.separatorChar));
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileAttributeViews.java228 String path = WindowsLinkSupport.getFinalPath(file, followLinks);
230 int oldValue = GetFileAttributes(path);
238 SetFileAttributes(path, newValue);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DZipFileIndexArchive.java205 protected String inferBinaryName(Iterable<? extends File> path) { argument
208 String prefix = zfIndex.symbolFilePrefix.path;
248 return zfIndex.symbolFilePrefix.path + entry.getName();
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeInfo.java519 public static Env<AttrContext> scopeFor(List<JCTree> path) { argument
527 List<JCTree> path;
528 Result(List<JCTree> path) {
529 this.path = path;
533 List<JCTree> path = List.nil();
536 path = path.prepend(tree);
538 throw new Result(path);
540 path
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DRootDocImpl.java307 * Return the path of the overview file and null if it does not exist.
308 * @return the path of the overview file and null if it does not exist.
354 JavaFileObject path;
355 return ((path = getOverviewPath()) == null) ?
357 SourcePositionImpl.make(path, Position.NOPOS, null);
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DMBeansTab.java267 TreePath path = e.getPath();
268 if (!tree.hasBeenExpanded(path)) {
270 (DefaultMutableTreeNode) path.getLastPathComponent();
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmRTBootClassPathTableMetaImpl.java106 final String[] path =
111 final int len = path.length;
119 return new SnmpCachedData(time, indexes, path);
H A DJvmRTClassPathTableMetaImpl.java105 final String[] path =
110 final int len = path.length;
118 return new SnmpCachedData(time, indexes, path);
H A DJvmRTLibraryPathTableMetaImpl.java105 final String[] path =
110 final int len = path.length;
118 return new SnmpCachedData(time, indexes, path);
/openjdk7/jdk/src/share/classes/sun/misc/
H A DJarIndex.java336 * the relative path of the current index.
340 * @param path The relative path of the this index to the destination
344 public void merge(JarIndex toIndex, String path) { argument
353 if (path != null) {
354 jarName = path.concat(jarName);
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DServerImpl.java212 public synchronized HttpContextImpl createContext (String path, HttpHandler handler) { argument
213 if (handler == null || path == null) {
214 throw new NullPointerException ("null handler, or path parameter");
216 HttpContextImpl context = new HttpContextImpl (protocol, path, handler, this);
218 logger.config ("context created: " + path);
222 public synchronized HttpContextImpl createContext (String path) { argument
223 if (path == null) {
224 throw new NullPointerException ("null path parameter");
226 HttpContextImpl context = new HttpContextImpl (protocol, path, null, this);
228 logger.config ("context created: " + path);
232 removeContext(String path) argument
[all...]
/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/jdk/src/share/classes/java/awt/geom/
H A DPath2D.java37 * shape which represents an arbitrary geometric path.
38 * It can fully represent any path which can be iterated by the
48 * basic construction and management of a geometric path and
58 * deals primarily with a trajectory formed by path segments
63 * of the types of segments that make up a path and the winding rules
65 * the path.
73 * a path.
82 * path.
125 * store the path segment types
145 * The {@code Float} class defines a geometric path wit
2574 Path2D path; field in class:Path2D.Iterator
2578 Iterator(Path2D path) argument
[all...]
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java137 public boolean matches(Path path) {
138 return matcher.matches(unwrap(path));
366 private Path wrap(Path path) { argument
367 return (path != null) ? new PassThroughPath(fs, path) : null;
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/util/
H A DUtil.java239 * @param path The relative path to the directory to be copied.
244 String path, String dir, boolean overwrite) {
245 if (checkCopyDocFilesErrors(configuration, path, dir)) {
249 File srcdir = new File(path + dir);
277 copyDocFiles(configuration, path, dir +
294 * @param path The relative path to the directory to be copied.
298 String path, String dirName) {
301 //The destination path an
243 copyDocFiles(Configuration configuration, String path, String dir, boolean overwrite) argument
297 checkCopyDocFilesErrors(Configuration configuration, String path, String dirName) argument
645 genWriter(Configuration configuration, String path, String filename, String docencoding) argument
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A Dos.hpp478 static int open(const char *path, int oflag, int mode);
481 static char* native_path(char *path);
494 static int readdir_buf_size(const char *path);
504 // Builds a platform-specific full library path given a ld path and lib name
516 // Locate DLL/DSO. On success, full path of the library is copied to
588 // Fills in path to jvm.dll/libjvm.so (used by the Disassembler)
607 static int stat(const char* path, struct stat* sbuf);
608 static bool dir_is_empty(const char* path);
611 static int create_binary_file(const char* path, boo
[all...]
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DPolicyFile.java705 pe.add(new PropertyPermission("path.separator",
1789 String path = null;
1814 path = u.getFile().replace('/', File.separatorChar);
1815 path = ParseUtil.decode(path);
1820 if (path != null) {
1823 path = canonPath(path);
1824 csUrl = ParseUtil.fileToEncodedURL(new File(path));
1850 // Wrapper to return a canonical path tha
1852 canonPath(String path) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DDefaultStyledDocument.java1408 path = new Stack<ElemChanges>();
1460 ElemChanges ec = path.peek();
1466 while (path.size() > 1) {
1491 // pop the remaining path
1492 while (path.size() != 0) {
1532 // push the path
1542 // Build a copy of the original path.
1543 insertPath = new ElemChanges[path.size()];
1544 path.copyInto(insertPath);
1573 // pop the remaining path
2469 transient Stack<ElemChanges> path; field in class:DefaultStyledDocument.ElementBuffer
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/border/
H A DTitledBorder.java321 Path2D path = new Path2D.Float();
322 path.append(new Rectangle(borderX, borderY, borderW, labelY - borderY), false);
323 path.append(new Rectangle(borderX, labelY, labelX - borderX - TEXT_SPACING, labelH), false);
324 path.append(new Rectangle(labelX + labelW + TEXT_SPACING, labelY, borderX - labelX + borderW - labelW - TEXT_SPACING, labelH), false);
325 path.append(new Rectangle(borderX, labelY + labelH, borderW, borderY - labelY + borderH - labelH), false);
326 g2d.clip(path);

Completed in 75 milliseconds

<<11121314151617181920>>