Searched defs:path (Results 76 - 100 of 363) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/
H A DT6668802.java54 File writeTestFile(String path, String contents) throws IOException { argument
55 File f = new File(path);
H A DT6999210.java109 File writeFile(File dir, String path, String body) throws IOException { argument
110 File f = new File(dir, path);
/openjdk7/langtools/test/tools/javac/api/lib/
H A DToolTester.java37 public final List<File> test_class_path = pathToFiles(System.getProperty("test.class.path"),
56 protected List<File> pathToFiles(String path, List<File> defaultPath) { argument
58 for (String f: path.split(File.pathSeparator)) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DAbsoluteLocationPath.java52 public AbsoluteLocationPath(Expression path) { argument
53 _path = path;
54 if (path != null) {
95 // Compile relative path iterator(s)
H A DFilteredAbsoluteLocationPath.java51 public FilteredAbsoluteLocationPath(Expression path) { argument
52 _path = path;
53 if (path != null) {
103 // Compile relative path iterator(s)
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DHasPositionalPredChecker.java48 * @param path LocPathIterator that is assumed to be absolute, but needs checking.
49 * @return true if the path is confirmed to be absolute, false if it
52 public static boolean check(LocPathIterator path) argument
55 path.callVisitors(null, hppc);
88 * Visit a predicate within a location path. Note that there isn't a
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DSALauncherLoader.java41 * "java.class.path". Because, this class loader loads SA debugger classes
44 * "sa.library.path" System property. This way updated/latest SA native library
51 * the System property "sa.library.path".
66 String salibpath = System.getProperty("sa.library.path");
120 final String s = System.getProperty("java.class.path");
121 final File[] path = (s == null) ? new File[0] : getClassPath(s);
123 return pathToURLs(path);
126 private static URL[] pathToURLs(File[] path) { argument
127 URL[] urls = new URL[path.length];
128 for (int i = 0; i < path
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DMenuDragMouseEvent.java51 private MenuElement path[]; field in class:MenuDragMouseEvent
73 * @param p an array of MenuElement objects specifying a path
83 path = p;
110 * @param p an array of MenuElement objects specifying a path
123 path = p;
128 * Returns the path to the selected menu item.
130 * @return an array of MenuElement objects representing the path value
133 return path;
H A DTreeSelectionEvent.java56 /** For each path identifies if that path is in fact new. */
84 * path identifies the path that have been either added or
88 * @param path the path that has changed in the selection
89 * @param isNew whether or not the path is new to the selection, false
90 * means path was removed from the selection.
92 public TreeSelectionEvent(Object source, TreePath path, boolean isNew, argument
98 paths[0] = path;
158 isAddedPath(TreePath path) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/
H A DTreeUI.java42 * last item in path will be drawn into. Will return null if
43 * any component in path is currently valid.
45 public abstract Rectangle getPathBounds(JTree tree, TreePath path); argument
48 * Returns the path for passed in row. If row is not visible
54 * Returns the row that the last item identified in path is visible
55 * at. Will return -1 if any of the elements in path are not
58 public abstract int getRowForPath(JTree tree, TreePath path); argument
66 * Returns the path to the node that is closest to x,y. If
68 * it'll always return a valid path. If you need to test if the
70 * the returned path an
99 startEditingAtPath(JTree tree, TreePath path) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DTreeModel.java115 * by <code>path</code> to <code>newValue</code>.
119 * @param path path to the node that the user has altered
122 public void valueForPathChanged(TreePath path, Object newValue); argument
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DSecureDirectoryStream.java39 * interface specify a relative path. All access to the file is relative
52 * performed using the path obtained by resolving the given relative path
53 * against the <i>original path</i> of the directory (irrespective of if the
63 * Opens the directory identified by the given path, returning a {@code
68 * the {@code path} parameter is an {@link Path#isAbsolute absolute} path.
69 * When the parameter is a relative path then the directory to open is
78 * @param path
79 * the path t
97 newDirectoryStream(T path, LinkOption... options) argument
146 newByteChannel(T path, Set<? extends OpenOption> options, FileAttribute<?>... attrs) argument
176 deleteFile(T path) argument
204 deleteDirectory(T path) argument
303 getFileAttributeView(T path, Class<V> type, LinkOption... options) argument
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCDesktopPeer.java86 private static native int _lsOpenFile(String path, boolean print); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/
H A DSCD.java60 * This method involves parsing the path expression and preparing the in-memory
67 * @param path
73 public static SCD create(String path, NamespaceContext nsContext) throws java.text.ParseException { argument
75 SCDParser p = new SCDParser(path,nsContext);
77 return new SCDImpl(path,list.toArray(new Step[list.size()]));
/openjdk7/jdk/src/solaris/native/java/io/
H A Dio_util_md.c66 fileOpen(JNIEnv *env, jobject this, jstring path, jfieldID fid, int flags) argument
68 WITH_PLATFORM_STRING(env, path, ps) {
81 throwFileNotFoundException(env, path);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsAclFileAttributeView.java80 static NativeBuffer getFileSecurity(String path, int request) argument
86 size = GetFileSecurity(path, request, 0L, 0);
88 x.rethrowAsIOException(path);
96 int newSize = GetFileSecurity(path, request, buffer.address(), size);
107 x.rethrowAsIOException(path);
120 String path = WindowsLinkSupport.getFinalPath(file, followLinks);
121 NativeBuffer buffer = getFileSecurity(path, OWNER_SECURITY_INFORMATION);
144 String path = WindowsLinkSupport.getFinalPath(file, followLinks);
148 NativeBuffer buffer = getFileSecurity(path, DACL_SECURITY_INFORMATION);
171 String path
[all...]
/openjdk7/jdk/test/java/lang/Runtime/exec/
H A DExecCommand.java134 private static void deleteOut(String path) { argument
136 Files.delete(FileSystems.getDefault().getPath(path));
141 private static void checkOut(String path) throws FileNotFoundException { argument
142 if (Files.notExists(FileSystems.getDefault().getPath(path)))
143 throw new FileNotFoundException(path);
/openjdk7/jdk/test/sun/security/ssl/sun/net/www/protocol/https/NewImpl/
H A DComHostnameVerifier.java84 * Returns the path to the file obtained from
93 String path = "";
99 path = line.substring(0, index);
109 if (path.length() != 0) {
110 return path;
118 * the file represented by the argument <b>path</b>.
124 * to <b>path</b> could not be loaded.
126 private byte[] getBytes(String path) argument
159 // get path to class file from header
162 String path
[all...]
H A DJavaxHostnameVerifier.java82 * Returns the path to the file obtained from
89 String path = "";
98 path = line.substring(0, index);
108 if (path.length() != 0) {
109 return path;
117 * the file represented by the argument <b>path</b>.
123 * to <b>path</b> could not be loaded.
125 private byte[] getBytes(String path) argument
158 // get path to class file from header
161 String path
[all...]
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTreePath.java32 * A path of tree nodes, typically used to represent the sequence of ancestor
40 * Gets a tree path for a tree node within a compilation unit.
48 * Gets a tree path for a tree node within a subtree identified by a TreePath object.
51 public static TreePath getPath(TreePath path, Tree target) { argument
52 path.getClass();
57 TreePath path;
58 Result(TreePath path) {
59 this.path = path;
71 new PathFinder().scan(path, targe
[all...]
/openjdk7/jdk/src/share/native/java/io/
H A DFileInputStream.c60 Java_java_io_FileInputStream_open(JNIEnv *env, jobject this, jstring path) { argument
61 fileOpen(env, this, path, fis_fd, O_RDONLY);
/openjdk7/jdk/src/share/classes/sun/swing/plaf/synth/
H A DStyleAssociation.java52 * Matcher used for testing if path matches that of pattern.
106 public synchronized boolean matches(CharSequence path) { argument
108 _matcher = _pattern.matcher(path);
111 _matcher.reset(path);
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DPackage.java42 * The path which we use to locate source files.
47 * The path which we use to locate class (binary) files.
52 * The path name of the package.
57 * Create a package given a class path, and package name.
59 public Package(ClassPath path, Identifier pkg) throws IOException { argument
60 this(path, path, pkg);
64 * Create a package given a source path, binary path, and package
93 // Look for the directory on our binary path
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/jcmd/
H A DArguments.java101 private void readCommandFile(String path) throws IOException { argument
102 try (BufferedReader bf = new BufferedReader(new FileReader(path));) {
/openjdk7/jdk/src/share/classes/sun/misc/
H A DIoTrace.java128 * @param path
129 * the path of the file
132 public static Object fileReadBegin(String path) { argument
151 * @param path
152 * the path of the file
155 public static Object fileWriteBegin(String path) { argument

Completed in 47 milliseconds

1234567891011>>