HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 1 - 25 of 1488) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
working-directory.h 1 #include <Inputs/working-directory-1.h>
  /cts/libs/vogar-expect/src/vogar/commands/
Mkdir.java 26 public void mkdirs(File directory) {
27 new Command("mkdir", "-p", directory.getPath()).execute();
Rm.java 30 public void directoryTree(File directory) {
31 new Command("rm", "-rf", directory.getPath()).execute();
  /external/proguard/src/proguard/io/
DirectoryPump.java 27 * This class can read a given file or directory, recursively, applying a given
34 private final File directory; field in class:DirectoryPump
37 public DirectoryPump(File directory)
39 this.directory = directory;
48 if (!directory.exists())
50 throw new IOException("No such file or directory");
53 readFiles(directory, dataEntryReader);
65 dataEntryReader.read(new FileDataEntry(directory, file));
FileDataEntry.java 34 private final File directory; field in class:FileDataEntry
39 public FileDataEntry(File directory,
42 this.directory = directory;
51 // Chop the directory name from the file name and get the right separators.
52 return file.equals(directory) ?
55 .substring(directory.getPath().length() + File.separator.length())
  /external/ltp/testcases/kernel/fs/fs_bind/regression/
00_Descriptions.txt 24 The contents of the regression directory:
25 test01 - bind unshared directory to unshare mountpoint.
26 test02 - rbind unshared directory to unshare mountpoint.
27 test03 - move unshared directory to unshare mountpoint.
32 bind unshared directory to unshare mountpoint.
37 rbind unshared directory to unshare mountpoint.
42 move unshared directory to unshare mountpoint.
  /external/swiftshader/src/Common/
SharedLibrary.cpp 28 std::string directory(filename);
29 return directory.substr(0, directory.find_last_of("\\/") + 1).c_str();
44 std::string directory(dl_info.dli_fname);
45 return directory.substr(0, directory.find_last_of("\\/") + 1).c_str();
  /external/ImageMagick/MagickCore/
vms.c 36 % The directory methods are strongly based on similar methods written
64 % closedir() closes the named directory stream and frees the DIR structure.
75 void closedir(DIR *directory)
79 assert(directory != (DIR *) NULL);
80 directory->pattern=DestroyString(directory->pattern);
81 directory=DestroyString(directory);
96 % opendir() opens the directory named by filename and associates a directory
109 *directory; local
    [all...]
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/
DirectorySourceFileLocator.java 20 * Locator for source files that picks source files from a given directory in
25 private final File directory; field in class:DirectorySourceFileLocator
29 * directory.
31 * @param directory
32 * directory to search for source file
40 public DirectorySourceFileLocator(final File directory,
43 this.directory = directory;
48 final File file = new File(directory, path);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
PwdCommandHandler.java 25 * CommandHandler for the PWD (Print Working Directory) and XPWD commands. By default, return
26 * an empty directory name, along with a reply code of 257. You can customize the returned
27 * directory name by setting the <code>directory</code> property.
36 private String directory = ""; field in class:PwdCommandHandler
46 sendReply(session, quotes(directory));
50 * Set the directory String to be returned by this command
52 * @param directory - the directory
54 public void setDirectory(String directory) {
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
rcsclient.py 13 # environment or from a hidden file in the current directory
36 directory = None
48 directory = a
61 if not directory:
63 directory = open(os.path.join("CVS", "Repository")).readline()
67 if directory[-1] == '\n':
68 directory = directory[:-1]
69 if directory:
70 x.cd(directory)
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
TrialOutputFactoryService.java 41 * A {@link TrialOutputFactory} implemented as a service that manages a directory either under
42 * {@code /tmp} or in a user configured directory.
44 * <p>If there is a user configured directory, then no files will be deleted on service shutdown.
60 private File directory; field in class:TrialOutputFactoryService
74 if (directory == null) {
78 dir = directory;
105 File directory; local
109 directory = new File(dirName);
110 if (!directory.exists()) {
111 if (!directory.mkdirs())
    [all...]
  /external/python/cpython2/Demo/pdist/
rcsclient.py 13 # environment or from a hidden file in the current directory
36 directory = None
48 directory = a
61 if not directory:
63 directory = open(os.path.join("CVS", "Repository")).readline()
67 if directory[-1] == '\n':
68 directory = directory[:-1]
69 if directory:
70 x.cd(directory)
    [all...]
  /external/v8/tools/
check-inline-includes.sh 9 for directory in $directories; do
10 headers=$(find "$v8_root/$directory" -name '*.h' -not -name '*-inl.h')
  /external/freetype/builds/atari/
FNames.SIC 13 local i,entries,directory,file;
15 entries = filelist(directory,folder);
18 file = directory[i,0];
19 if ((directory[i,3]&16) > 0) /* subdirectory */
  /external/golang-protobuf/conformance/
Makefile 35 @echo To run the tests in this directory, acquire the main protobuf
44 @echo And run the tests in this directory with:
  /external/python/cpython2/Misc/
python-wing3.wpr 7 proj.directory-list = [{'dirloc': loc('..'),
python-wing4.wpr 7 proj.directory-list = [{'dirloc': loc('..'),
  /external/python/cpython3/Misc/
python-wing3.wpr 7 proj.directory-list = [{'dirloc': loc('..'),
  /external/vogar/src/vogar/commands/
Mkdir.java 32 public void mkdirs(File directory) {
33 new Command(log, "mkdir", "-p", directory.getPath()).execute();
  /external/skia/tools/
git-sync-deps 18 will use the file ../DEPS relative to this script's directory.
76 def git_repository_sync_is_disabled(git, directory):
79 [git, 'config', 'sync-deps.disable'], cwd=directory)
85 def is_git_toplevel(git, directory):
86 """Return true iff the directory is the top level of a Git repository.
91 directory (string) the path into which the repository
96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
97 return os.path.realpath(directory) == os.path.realpath(toplevel)
102 def status(directory, checkoutable):
106 directory = truncate(directory, dlen
    [all...]
  /external/skqp/tools/
git-sync-deps 18 will use the file ../DEPS relative to this script's directory.
76 def git_repository_sync_is_disabled(git, directory):
79 [git, 'config', 'sync-deps.disable'], cwd=directory)
85 def is_git_toplevel(git, directory):
86 """Return true iff the directory is the top level of a Git repository.
91 directory (string) the path into which the repository
96 [git, 'rev-parse', '--show-toplevel'], cwd=directory).strip()
97 return os.path.realpath(directory) == os.path.realpath(toplevel)
102 def status(directory, checkoutable):
106 directory = truncate(directory, dlen
    [all...]
  /external/deqp-deps/SPIRV-Tools/utils/
update_build_version.py 24 # - The software version deduced from the CHANGES file in the given directory.
26 # git commit information for the directory. The commit information
44 def mkdir_p(directory):
45 """Make the directory, and all its ancestors as required. Any of the
48 if directory == "":
49 # We're being asked to make the current directory.
53 os.makedirs(directory)
55 if e.errno == errno.EEXIST and os.path.isdir(directory):
61 def command_output(cmd, directory):
62 """Runs a command in a directory and returns its standard output stream
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
PwdCommandHandler.java 25 * CommandHandler for the PWD (Print Working Directory) and XPWD commands. By default, return
26 * an empty directory name, along with a reply code of 257. You can customize the returned
27 * directory name by setting the <code>directory</code> property.
37 private String directory = ""; field in class:PwdCommandHandler
50 sendReply(session, quotes(directory));
54 * Set the directory String to be returned by this command
55 * @param directory - the directory
58 this.directory = response;
    [all...]
  /external/swiftshader/third_party/SPIRV-Tools/utils/
update_build_version.py 24 # - The software version deduced from the CHANGES file in the given directory.
26 # git commit information for the directory. The commit information
44 def mkdir_p(directory):
45 """Make the directory, and all its ancestors as required. Any of the
48 if directory == "":
49 # We're being asked to make the current directory.
53 os.makedirs(directory)
55 if e.errno == errno.EEXIST and os.path.isdir(directory):
61 def command_output(cmd, directory):
62 """Runs a command in a directory and returns its standard output stream
    [all...]

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 91011>>