/external/clang/test/PCH/ |
working-directory.h | 1 #include <Inputs/working-directory-1.h>
|
/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/chromium/chrome/browser/sync/syncable/ |
syncable_mock.cc | 14 Directory *directory) 15 : WriteTransaction(directory, syncable::UNITTEST, "dontcare.cpp", 25) {
|
/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/chrome/browser/sync/engine/ |
syncapi_mock.h | 19 explicit MockWriteTransaction(Directory* directory) 21 this->SetTransaction(new MockSyncableWriteTransaction(directory));
|
/external/chromium_org/sync/syncable/ |
syncable_read_transaction.cc | 11 Directory* directory) 12 : BaseTransaction(location, "ReadTransaction", INVALID, directory) {
|
/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/cloud_print/gcp20/prototype/ |
print_job_handler.cc | 28 base::FilePath directory(kJobsPath); 32 if (!base::DirectoryExists(directory) && !CreateDirectory(directory)) { 33 LOG(WARNING) << "Cannot create directory: " << directory.value(); 37 directory = directory.AppendASCII(job_name); 39 if (!base::DirectoryExists(directory) && !CreateDirectory(directory)) { 40 LOG(WARNING) << "Cannot create directory: " << directory.value() [all...] |
/external/chromium_org/sync/internal_api/public/ |
user_share.h | 16 class Directory; 27 // The Directory itself, which is the parent of Transactions. 28 scoped_ptr<syncable::Directory> directory; member in struct:syncer::UserShare
|
/external/chromium_org/third_party/openssl/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/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/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)
|