Searched refs:path (Results 451 - 475 of 594) sorted by relevance

<<11121314151617181920>>

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/
H A DDeploymentDescriptorParser.java172 for (String path : paths) {
173 if (path.endsWith("/")) {
174 if(path.endsWith("/CVS/") || path.endsWith("/.svn/"))
176 collectDocs(path);
178 URL res = loader.getResource(path);
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11FontManager.java53 * to font file path like
65 * xlfdMap is a map from a platform path like
81 * add it to the X font server path, since although the files may
84 * heap space. If the optimal path is taken, such that all fonts in
94 * This is the set of font directories needed to be on the X font path
122 * the only code path that accesses this map.
126 /* Array of directories to be added to the X11 font path.
173 /* If a path is assigned in the font configuration file,
176 * which must be added to the X11 font path to support
285 protected void registerFontDir(String path) { argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DThreadTreeTool.java246 List<String> path = threadPath(thread);
251 threadTable.put(thread, path);
252 addThread(path, thread);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/sym/
H A DCreateSymbols.java146 for (File path : fm.getLocation(StandardLocation.PLATFORM_CLASS_PATH)) {
147 if (!new File(path.getName()).equals(new File("rt.jar")))
148 bootClassPath.add(path);
150 System.err.println("Using boot class path = " + bootClassPath);
/openjdk7/langtools/test/tools/javac/diags/
H A DHTMLWriter.java294 * Write an image tag, using a specified path for the image source attribute.
295 * @param imagePath the path for the image source
304 * Write an image tag, using a specified path for the image source attribute.
334 String path = file.getPath().replace(File.separatorChar, '/');
335 if (file.isAbsolute() && !path.startsWith("/"))
337 sb.append(path);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStep.java154 * Returns 'true' if this step has a parent location path.
383 // instead of an auxiliary class. Certain path/predicates pairs
384 // are translated into a base path, on top of which we place a
399 // Otherwise we create a parent location path with this Step and
402 ParentLocationPath path = new ParentLocationPath(this, step);
403 _parent = step._parent = path; // Force re-parenting
406 path.typeCheck(getParser().getSymbolTable());
410 path.translateStep(classGen, methodGen);
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/debugger/windbg/
H A DWindbgDebuggerLocal.java370 // remove path part, if any.
384 String path = findFullPath(file);
385 if (path != null) {
388 dll = new DLL(this, path, size,newAddress(base)) {
400 dll = new DLL(this, path, size, newAddress(base));
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/
H A Dhat.js624 * Java object is live. Each path itself is an array of
625 * objects in the chain of references. Each path supports
626 * toHtml method that returns html description of the path.
638 var path = new Array();
640 // compute path array from refChain
644 path[path.length] = wrapJavaValue(obj);
674 var res = new Array(path.length);
675 for (var i = 0; i < path.length; i++) {
682 name >= 0 && name < path
[all...]
/openjdk7/hotspot/make/windows/projectfiles/common/
H A DMakefile116 @$(RUN_JAVA) -Djava.class.path="$(HOTSPOTBUILDSPACE)/classes" ProjectCreator WinGammaPlatform$(VcVersion) $(ProjectCreatorIDEOptions)
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/
H A DBaseFileObject.java76 protected abstract String inferBinaryName(Iterable<? extends File> path); argument
/openjdk7/jdk/src/share/demo/jfc/FileChooserDemo/
H A DFileChooserDemo.java612 String path = null;
619 path = "";
621 path = path + "<br>" + file.getPath();
627 path = "<br>" + file.getPath();
630 if (path != null) {
631 path = path.replace(" ", "&nbsp;");
636 : (isMulti ? "files" : "file")) + ": <code>" + path
/openjdk7/hotspot/agent/make/
H A Dstart-debug-server-windbg.bat39 %SA_JAVA% -classpath %SA_CLASSPATH% -Djava.rmi.server.codebase=file:/%SA_CLASSPATH% -Djava.security.policy=grantAll.policy -Djava.library.path=%SA_LIBPATH% %OPTIONS% sun.jvm.hotspot.DebugServer %1 %2 %3 %4 %5 %6 %7 %8 %9
H A Dstart-debug-server-windbg64.bat39 %SA_JAVA% -classpath %SA_CLASSPATH% -Djava.rmi.server.codebase=file:/%SA_CLASSPATH% -Djava.security.policy=grantAll.policy -Djava.library.path=%SA_LIBPATH% %OPTIONS% sun.jvm.hotspot.DebugServer %1 %2 %3 %4 %5 %6 %7 %8 %9
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.inline.hpp89 inline int os::readdir_buf_size(const char *path) { argument
90 int size = pathconf(path, _PC_NAME_MAX);
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DWinGammaPlatformVC7.java119 for (String path : includes) {
120 FileTreeCreatorVC7 ftc = new FileTreeCreatorVC7(FileSystems.getDefault().getPath(path) , allConfigs, this);
/openjdk7/jaxws/src/share/jaf_classes/javax/activation/
H A DMimetypesFileTypeMap.java95 String path = user_home + File.separator + ".mime.types";
96 mf = loadFile(path);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wscompile/
H A DOptions.java74 public String classpath = System.getProperty("java.class.path");
360 * Utility method for converting a search path string to an array
363 * @param path the search path string
366 public static URL[] pathToURLs(String path) { argument
367 StringTokenizer st = new StringTokenizer(path, File.pathSeparator);
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DLinuxNativeDispatcher.c157 const char* path = (const char*)jlong_to_ptr(pathAddress); local
161 fp = setmntent(path, mode);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsUserDefinedFileAttributeView.java334 String path = WindowsLinkSupport.getFinalPath(file, followLinks);
335 String toDelete = join(path, name);
/openjdk7/jdk/src/windows/demo/jvmti/hprof/
H A Dhprof_md.c245 md_get_prelude_path(char *path, int path_len, char *filename) argument
261 (void)md_snprintf(path, path_len, "%s\\lib\\%s", libdir, filename);
380 /* check for NULL path */
399 /* Build a machine dependent library name out of a path and file name. */
/openjdk7/jdk/test/sun/security/provider/PolicyFile/
H A DCanonPath.java48 private static void printCanonPath(String label, String path) argument
51 File f = new File(path);
52 System.out.println(label + " path = " + f.getCanonicalPath());
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/X509TrustManagerImpl/
H A DBasicConstraints.java418 // check the certification path
421 CertPath path = cf.generateCertPath(Arrays.asList(chain));
423 cv.validate(path, paras);
/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
H A DSubWriterHolderWriter.java58 String path, String filename, String relpath)
60 super(configuration, path, filename, relpath);
57 SubWriterHolderWriter(ConfigurationImpl configuration, String path, String filename, String relpath) argument

Completed in 80 milliseconds

<<11121314151617181920>>