Lines Matching refs:directory

45  * This class represents access to a file or directory.  A FilePermission consists
48 * Pathname is the pathname of the file or directory granted the specified
51 * all the files and directories contained in that directory. A pathname
53 * and subdirectories contained in that directory. Such a pathname is called
60 * in the current directory, while a pathname consisting of a single "-"
61 * indicates all the files in the current directory and
63 * directory.
96 * directory it's in (or a subdirectory of that directory); it does not
146 // does path indicate a directory? (wildcard or recursive)
147 private transient boolean directory;
149 // is it a recursive directory specification?
237 this.directory = input.directory;
349 directory = true;
371 directory = true;
385 // intended to match all entries in a directory
403 directory = true;
408 directory = true;
414 //directory = false;
424 * <i>path</i> is the pathname of a file or directory, and <i>actions</i>
426 * file or directory. Possible actions are
431 * indicates all the files and directories contained in that directory.
433 * subdirectories contained in that directory. The special pathname
437 * in the current directory, while a pathname consisting of a single "-"
438 * indicates all the files in the current directory and
440 * directory.
468 * @param path the pathname of the file/directory.
487 * @param path the pathname of the file/directory.
506 * "/tmp/*" encompasses all files in the "/tmp" directory,
592 || (this.directory && that.directory) != that.directory) {
597 && this.directory == that.directory) {
606 if (diff == 1 && directory && !that.directory) {
614 && this.directory == that.directory) {
621 if (diff == 1 && directory && !that.directory) {
628 if (this.directory) {
632 if (that.directory) {
640 if (that.directory) {
641 // if the permission passed in is a directory
661 } else if (that.directory) {
795 (this.directory == that.directory) &&
800 (this.directory == that.directory) &&
814 mask, allFiles, directory, recursive, npath, npath2, invalid);