Lines Matching defs:directory

41  * This class represents access to a file or directory.  A FilePermission consists
44 * Pathname is the pathname of the file or directory granted the specified
47 * all the files and directories contained in that directory. A pathname
49 * and subdirectories contained in that directory. A pathname consisting of
53 * in the current directory, while a pathname consisting of a single "-"
54 * indicates all the files in the current directory and
56 * directory.
89 * directory it's in (or a subdirectory of that directory); it does not
139 // does path indicate a directory? (wildcard or recursive)
140 private transient boolean directory;
142 // is it a recursive directory specification?
171 sb.append("directory = "+directory+"\n");
202 directory = true;
216 // intended to match all entries in a directory
234 directory = true;
239 directory = true;
245 //directory = false;
254 * <i>path</i> is the pathname of a file or directory, and <i>actions</i>
256 * file or directory. Possible actions are
261 * indicates all the files and directories contained in that directory.
263 * subdirectories contained in that directory. The special pathname
267 * in the current directory, while a pathname consisting of a single "-"
268 * indicates all the files in the current directory and
270 * directory.
274 * @param path the pathname of the file/directory.
295 * @param path the pathname of the file/directory.
316 * "/tmp/*" encompasses all files in the "/tmp" directory,
348 if (this.directory) {
352 if (that.directory) {
360 if (that.directory) {
361 // if the permission passed in is a directory
381 } else if (that.directory) {
410 (this.directory == that.directory) &&