Searched refs:path (Results 1 - 25 of 974) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.instrument/share/native/libinstrument/
H A DPathCharsValidator.h28 * Validates that the given URI path component does not contain any
31 int validatePathChars(const char* path);
H A DFileSystemSupport.h29 * Return the local filesystem's path-separator character.
40 * Post-process the given URI path string if necessary. This is used on
41 * win32, e.g., to transform "/c:/foo" into "c:/foo". The path string
45 char* fromURIPath(const char* path);
48 * Return the basen path of the given pathname. If the string is already
49 * the base path then it is simply returned.
51 char* basePath(const char* path);
57 char* normalize(const char* path);
62 int isAbsolute(const char * path);
/openjdk10/hotspot/test/compiler/jsr292/
H A DcreatesInterfaceDotEqualsCallInfo.js25 var path = new java.io.File("/Users/someone").toPath();
26 path.toString();
/openjdk10/nashorn/test/script/basic/
H A DJDK-8098807.js34 var path = __DIR__ + "JDK-8098807-payload.js" variable
35 var source = readFully(path);
/openjdk10/jdk/src/java.base/windows/native/libjava/
H A Djdk_util_md.c44 char path[MAX_PATH]; local
46 if (GetSystemDirectory(path, sizeof(path)) != 0) {
47 strcat(path, "\\");
48 strcat(path, name);
49 handle = LoadLibrary(path);
53 if (GetWindowsDirectory(path, sizeof(path)) != 0) {
54 strcat(path, "\\");
55 strcat(path, nam
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/source/util/
H A DDocTreePathScanner.java32 * support for maintaining a path for the parent nodes.
42 * Scans a tree from a position identified by a tree path.
43 * @param path the path
47 public R scan(DocTreePath path, P p) { argument
48 this.path = path;
50 return path.getLeaf().accept(this, p);
52 this.path = null;
58 * The current path i
86 private DocTreePath path; field in class:DocTreePathScanner
[all...]
H A DTreePathScanner.java32 * support for maintaining a path for the parent nodes.
39 * In order to initialize the "current path", the scan must be
49 * @param path the path identifying the node to be scanned
53 public R scan(TreePath path, P p) { argument
54 this.path = path;
56 return path.getLeaf().accept(this, p);
58 this.path = null;
64 * The current path i
97 private TreePath path; field in class:TreePathScanner
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/event/
H A DTreeExpansionEvent.java32 * An event used to identify a single path in a tree. The source
57 protected TreePath path; field in class:TreeExpansionEvent
64 * @param path a TreePath object identifying the newly expanded
67 public TreeExpansionEvent(Object source, TreePath path) { argument
69 this.path = path;
73 * Returns the path to the value that has been expanded/collapsed.
77 public TreePath getPath() { return path; }
H A DTreeModelEvent.java56 protected TreePath path; field in class:TreeModelEvent
64 * removed, identifying the path to the parent of the modified items as
118 * @param path an array of Object identifying the path to the
129 public TreeModelEvent(Object source, Object[] path, int[] childIndices, argument
132 this(source, (path == null) ? null : new TreePath(path), childIndices, children);
137 * removed, identifying the path to the parent of the modified items as
145 * @param path a TreePath object that identifies the path t
154 TreeModelEvent(Object source, TreePath path, int[] childIndices, Object[] children) argument
185 TreeModelEvent(Object source, Object[] path) argument
207 TreeModelEvent(Object source, TreePath path) argument
[all...]
/openjdk10/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/
H A DResourcePoolEntryFactory.java34 public static ResourcePoolEntry create(String path, argument
36 return new ByteArrayResourcePoolEntry(moduleFrom(path), path, type, content);
39 public static ResourcePoolEntry create(String path, argument
41 return new PathResourcePoolEntry(moduleFrom(path), path, type, file);
46 original.path(), original.type(), content);
51 original.path(), original.type(), file);
54 public static ResourcePoolEntry createSymbolicLink(String path, argument
57 return new SymLinkResourcePoolEntry(moduleFrom(path), pat
60 moduleFrom(String path) argument
[all...]
H A DAbstractResourcePoolEntry.java36 * A LinkResourcePoolEntry is identified by a path of the form:
45 private final String path; field in class:AbstractResourcePoolEntry
53 * @param path The data path identifier.
56 AbstractResourcePoolEntry(String module, String path, Type type) { argument
58 this.path = Objects.requireNonNull(path);
68 public final String path() { method in class:AbstractResourcePoolEntry
69 return path;
79 return Objects.hashCode(this.path);
[all...]
/openjdk10/jdk/test/java/net/httpclient/websocket/
H A DLoggingHelper.java35 String path = System.getProperty("test.src") + File.separator + "logging.properties";
36 System.setProperty("java.util.logging.config.file", path);
/openjdk10/jdk/src/java.desktop/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
89 /** Last path component. */
94 * identifies the path to a node.
96 * @param path an array of objects representing the path to a node
97 * @throws IllegalArgumentException if {@code path} i
101 TreePath(Object[] path) argument
162 TreePath(Object[] path, int length) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/java/nio/file/
H A DPathMatcher.java40 * Tells if given path matches this matcher's pattern.
42 * @param path
43 * the path to match
45 * @return {@code true} if, and only if, the path matches this
48 boolean matches(Path path); argument
/openjdk10/jdk/src/java.base/macosx/classes/sun/nio/fs/
H A DMacOSXFileSystem.java50 char[] normalizeNativePath(char[] path) { argument
51 for (char c : path) {
53 return normalizepath(path, kCFStringNormalizationFormD);
55 return path;
58 String normalizeJavaPath(String path) { argument
59 for (int i = 0; i < path.length(); i++) {
60 if (path.charAt(i) > 0x80)
61 return new String(normalizepath(path.toCharArray(),
64 return path;
/openjdk10/jdk/src/java.base/share/classes/java/io/
H A DFileNotFoundException.java76 private FileNotFoundException(String path, String reason) { argument
77 super(path + ((reason == null)
/openjdk10/jdk/test/java/io/File/
H A DGetCanonicalPath.java38 String path = new File("c:/").getCanonicalPath();
39 if (path.length() > 3)
/openjdk10/jdk/test/java/beans/Beans/
H A DTest4080522.java43 String[] path = {"a", "b"};
45 test(path);
62 Introspector.setBeanInfoSearchPath(path);
68 PropertyEditorManager.setEditorSearchPath(path);
76 test(path);
79 private static void test(String[] path) { argument
83 Introspector.setBeanInfoSearchPath(path);
84 PropertyEditorManager.setEditorSearchPath(path);
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/file/
H A DRelativePath.java37 * Used to represent a platform-neutral path within a platform-specific
51 path = p;
60 return directory.resolve(path.replace("/", sep));
66 return root.resolve(path.replace("/", sep));
71 return path.compareTo(other.path);
78 return path.equals(((RelativePath) other).path);
83 return path.hashCode();
88 return "RelPath[" + path
95 protected final String path; field in class:RelativePath
[all...]
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/
H A DFileSupport.java32 public boolean exists(Path path) { argument
33 return Files.exists(path);
36 public boolean isDirectory(Path path) { argument
37 return Files.isDirectory(path);
40 private static FileSystem makeJarFileSystem(Path path) { argument
42 return FileSystems.newFileSystem(makeJarFileURI(path), new HashMap<>());
48 private static URI makeJarFileURI(Path path) { argument
50 String name = path.toAbsolutePath().toString();
58 public ClassLoader createClassLoader(Path path, ClassLoader parent) { argument
60 return URLClassLoader.newInstance(buildUrls(path), paren
66 createClassLoader(Path path) argument
70 buildUrls(Path path) argument
83 getSubDirectory(FileSystem fileSystem, Path root, Path path) argument
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/utilities/
H A DLivenessPathList.java44 void add(LivenessPath path) { argument
45 list.add(path);
48 void remove(LivenessPath path) { argument
49 list.remove(path);
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/org/glassfish/external/probe/provider/
H A DPluginPoint.java40 String path; field in class:PluginPoint
44 path = lpath;
52 return path;
/openjdk10/jdk/test/sun/management/jmxremote/bootstrap/
H A DUtils.java34 static String convertPath(String path) { argument
37 return path;
40 char[] cs = path.toCharArray();
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/
H A DDocLink.java29 * Abstraction for simple relative URIs, consisting of a path,
42 final String path; field in class:DocLink
51 /** Create a DocLink representing the URI {@code path}. */
52 public DocLink(DocPath path) { argument
53 this(path.getPath(), null, null);
57 * Create a DocLink representing the URI {@code path?query#fragment}.
60 public DocLink(DocPath path, String query, String fragment) { argument
61 this(path.getPath(), query, fragment);
65 * Create a DocLink representing the URI {@code path?query#fragment}.
68 public DocLink(String path, Strin argument
[all...]
/openjdk10/nashorn/test/script/nosecurity/
H A DJDK-util.js53 var path = System.getenv("PATH")
54 var st = new java.util.StringTokenizer(path, File.pathSeparator)
79 function cygpath(path,mode) {
81 var newpath = path
82 if(path.startsWith("/cygdrive/")){
83 var str = path.substring(10)
99 * convert given path based on underlying shell programme runs on
101 function toShellPath(path) {
104 return cygpath(path,outPath.mixed)
106 var path
[all...]

Completed in 136 milliseconds

1234567891011>>