HomeSort by relevance Sort by last modified time
    Searched refs:directory (Results 1 - 25 of 1359) 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>
  /external/qemu/android/utils/
host_bitness.c 22 char directory[900]; local
24 // Retrieves the path of the WOW64 system directory, which doesn't
26 unsigned len = GetSystemWow64Directory(directory, sizeof(directory));
  /external/valgrind/main/memcheck/tests/
supp-dir.stderr.exp 2 FATAL: suppressions file "x86/" is a directory
  /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/valgrind/main/none/tests/
nodir.stderr.exp 1 valgrind: ./nodir.vgtest/foobar: Not a directory
shell_dir.stderr.exp 1 valgrind: ./x86/: is a directory
shell_nosuchfile.stderr.exp 1 valgrind: ./shell_nosuchfile: No such file or directory
cmdline5.stderr.exp 1 valgrind: ./no-such-program-my-friend: No such file or directory
procfs-non-linux.stderr.exp 3 open(): No such file or directory
5 open(): No such file or directory
6 readlink: No such file or directory
7 readlink: No such file or directory
shell_badinterp.stderr.exp 1 valgrind: ./shell_badinterp: bad interpreter: No such file or directory
threadederrno.stdout.exp 1 f = 0, errno = 2 (No such file or directory)
2 f = 0, errno = 2 (No such file or directory)
3 f = 0, errno = 2 (No such file or directory)
  /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/chromium_org/sync/internal_api/test/
test_user_share.cc 8 #include "sync/syncable/directory.h"
32 user_share_->directory.reset(dir_maker_->directory());
37 ignore_result(user_share_->directory.release());
44 if (!user_share_->directory->SaveChanges())
48 user_share_->directory->store_.release();
51 ignore_result(user_share_->directory.release());
54 user_share_->directory.reset(dir_maker_->directory());
72 syncer::syncable::Directory* directory = user_share->directory.get() local
    [all...]
  /external/chromium_org/sync/syncable/
syncable_base_write_transaction.cc 14 Directory* directory)
15 : BaseTransaction(location, name, writer, directory) {
syncable_read_transaction.cc 11 Directory* directory)
12 : BaseTransaction(location, "ReadTransaction", INVALID, directory) {
syncable_model_neutral_write_transaction.cc 7 #include "sync/syncable/directory.h"
14 WriterTag writer, Directory* directory)
18 directory) {
23 directory()->CheckInvariantsOnTransactionClose(this, modified_handles_);
  /external/chromium_org/chrome/common/extensions/docs/server2/
file_system_util.py 7 def CreateURLsFromPaths(file_system, directory, urlprefix):
8 '''Yields a tuple (url, prefix) for every file in |directory|, where the URL
11 for root, _, files in file_system.Walk(directory):
14 yield url, posixpath.join(directory, root, f)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
desktop_platform_backend.py 17 def FlushSystemCacheForDirectory(self, directory, ignoring=None):
18 assert directory and os.path.exists(directory), \
19 'Target directory %s must exist' % directory
25 directory_contents = os.listdir(directory)
28 args.append(os.path.join(directory, item))
  /external/openssl/crypto/
LPdir_nyi.c 33 const char *LP_find_file(LP_DIR_CTX **ctx, const char *directory)
o_dir.h 43 /* returns NULL on error or end-of-directory.
44 If it is end-of-directory, errno will be zero */
45 const char *OPENSSL_DIR_read(OPENSSL_DIR_CTX **ctx, const char *directory);
  /external/chromium_org/third_party/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 git_checkout_to_directory(git, repo, checkoutable, directory, verbose):
114 directory (string) the path into which the repositor
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
workspace_mock.py 31 def find_unused_filename(self, directory, name, extension, search_limit=10):
32 return "%s/%s.%s" % (directory, name, extension)
  /external/chromium_org/third_party/WebKit/public/web/
WebFileChooserParams.h 43 // If |directory| is true, the dialog allows the user to select a directory.
44 bool directory; member in struct:blink::WebFileChooserParams
77 , directory(false)

Completed in 1298 milliseconds

1 2 3 4 5 6 7 8 91011>>