Searched defs:DirectoryExists (Results 1 - 19 of 19) sorted by path

/external/chromium_org/base/files/
H A Dfile_util_posix.cc364 bool DirectoryExists(const FilePath& path) { function in namespace:base
579 if (DirectoryExists(*i))
588 if (!DirectoryExists(*i)) {
H A Dfile_util_win.cc183 DCHECK(recursive || DirectoryExists(from_path));
186 bool from_is_dir = DirectoryExists(from_path);
189 if (recursive && DirectoryExists(to_path)) {
207 if (!DirectoryExists(target_path) &&
245 bool DirectoryExists(const FilePath& path) { function in namespace:base
418 if (error_code == ERROR_ALREADY_EXISTS && DirectoryExists(full_path)) {
421 // with the same path. If DirectoryExists() returns true, we lost the
749 if (DirectoryExists(from_path)) {
/external/chromium_org/chrome/browser/sync_file_system/local/
H A Dcanned_syncable_file_system.cc421 File::Error CannedSyncableFileSystem::DirectoryExists( function in class:sync_file_system::CannedSyncableFileSystem
652 operation_runner()->DirectoryExists(url, callback);
H A Dsyncable_file_system_operation.cc165 void SyncableFileSystemOperation::DirectoryExists( function in class:sync_file_system::SyncableFileSystemOperation
169 impl_->DirectoryExists(url, callback);
/external/chromium_org/content/browser/fileapi/
H A Dcopy_or_move_operation_delegate_unittest.cc370 bool DirectoryExists(const FileSystemURL& url) { function in class:content::CopyOrMoveOperationTestHelper
371 return AsyncFileTestHelper::DirectoryExists(file_system_context_.get(),
476 ASSERT_TRUE(helper.DirectoryExists(src));
477 ASSERT_TRUE(helper.DirectoryExists(dest));
505 ASSERT_FALSE(helper.DirectoryExists(src));
506 ASSERT_TRUE(helper.DirectoryExists(dest));
541 ASSERT_TRUE(helper.DirectoryExists(src));
542 ASSERT_TRUE(helper.DirectoryExists(dest));
578 ASSERT_FALSE(helper.DirectoryExists(src));
579 ASSERT_TRUE(helper.DirectoryExists(des
[all...]
H A Dfile_system_operation_impl_unittest.cc135 bool DirectoryExists(const std::string& path) { function in class:content::FileSystemOperationImplTest
136 return AsyncFileTestHelper::DirectoryExists(
434 base::File::Error DirectoryExists(const FileSystemURL& url) { function in class:content::FileSystemOperationImplTest
438 operation_runner()->DirectoryExists(
582 EXPECT_FALSE(DirectoryExists("src"));
589 EXPECT_TRUE(DirectoryExists("dest"));
590 EXPECT_FALSE(DirectoryExists("dest/src"));
600 EXPECT_FALSE(DirectoryExists("src"));
601 EXPECT_TRUE(DirectoryExists("dest/new"));
617 EXPECT_TRUE(DirectoryExists("des
[all...]
H A Dlocal_file_util_unittest.cc86 !base::DirectoryExists(LocalPath(file_name));
89 bool DirectoryExists(const char *file_name) { function in class:content::LocalFileUtilTest
90 return base::DirectoryExists(LocalPath(file_name));
297 EXPECT_TRUE(DirectoryExists(from_dir));
300 EXPECT_FALSE(DirectoryExists(to_dir));
307 EXPECT_TRUE(DirectoryExists(from_dir));
310 EXPECT_TRUE(DirectoryExists(to_dir));
360 EXPECT_TRUE(DirectoryExists(from_dir));
363 EXPECT_FALSE(DirectoryExists(to_dir));
371 EXPECT_FALSE(DirectoryExists(from_di
[all...]
H A Dobfuscated_file_util_unittest.cc53 return base::PathExists(path) && !base::DirectoryExists(path);
299 bool DirectoryExists(const FileSystemURL& url) { function in class:content::ObfuscatedFileUtilTest
300 return AsyncFileTestHelper::DirectoryExists(file_system_context(), url);
389 EXPECT_TRUE(DirectoryExists(
590 EXPECT_FALSE(DirectoryExists(dest_url));
773 EXPECT_TRUE(base::DirectoryExists(origin_directory));
774 EXPECT_FALSE(base::DirectoryExists(old_directory_db_path));
931 EXPECT_FALSE(DirectoryExists(url));
1043 EXPECT_FALSE(DirectoryExists(url));
1062 EXPECT_FALSE(DirectoryExists(ur
[all...]
/external/chromium_org/content/public/test/
H A Dasync_file_test_helper.cc249 bool AsyncFileTestHelper::DirectoryExists(storage::FileSystemContext* context, function in class:content::AsyncFileTestHelper
/external/chromium_org/sandbox/linux/services/
H A Dcredentials_unittest.cc25 bool DirectoryExists(const char* path) { function in namespace:sandbox::__anon10576
211 CHECK(!DirectoryExists("/proc"));
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_operation_impl.cc109 void FileSystemOperationImpl::DirectoryExists(const FileSystemURL& url, function in class:storage::FileSystemOperationImpl
H A Dfile_system_operation_runner.cc137 OperationID FileSystemOperationRunner::DirectoryExists( function in class:storage::FileSystemOperationRunner
150 operation->DirectoryExists(
H A Dnative_file_util.cc126 if (!base::DirectoryExists(path.DirName())) {
132 if (base::DirectoryExists(path))
141 if (!base::DirectoryExists(path.DirName()))
178 if (path_exists && !base::DirectoryExists(path))
239 bool NativeFileUtil::DirectoryExists(const base::FilePath& path) { function in class:storage::NativeFileUtil
240 return base::DirectoryExists(path);
296 if (base::DirectoryExists(path))
306 if (!base::DirectoryExists(path))
/external/chromium_org/testing/gtest/src/
H A Dgtest-filepath.cc223 bool FilePath::DirectoryExists() const { function in class:testing::internal::FilePath
313 if (pathname_.length() == 0 || this->DirectoryExists()) {
338 return this->DirectoryExists(); // An error is OK if the directory exists.
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-filepath.cc216 bool FilePath::DirectoryExists() const { function in class:testing::internal::FilePath
306 if (pathname_.length() == 0 || this->DirectoryExists()) {
331 return this->DirectoryExists(); // An error is OK if the directory exists.
/external/gtest/src/
H A Dgtest-filepath.cc218 bool FilePath::DirectoryExists() const { function in class:testing::internal::FilePath
308 if (pathname_.length() == 0 || this->DirectoryExists()) {
333 return this->DirectoryExists(); // An error is OK if the directory exists.
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-filepath.cc214 bool FilePath::DirectoryExists() const { function in class:testing::internal::FilePath
304 if (pathname_.length() == 0 || this->DirectoryExists()) {
329 return this->DirectoryExists(); // An error is OK if the directory exists.
/external/mesa3d/src/gtest/src/
H A Dgtest-filepath.cc216 bool FilePath::DirectoryExists() const { function in class:testing::internal::FilePath
306 if (pathname_.length() == 0 || this->DirectoryExists()) {
331 return this->DirectoryExists(); // An error is OK if the directory exists.
/external/protobuf/gtest/src/
H A Dgtest-filepath.cc185 bool FilePath::DirectoryExists() const { function in class:testing::internal::FilePath
274 if (pathname_.length() == 0 || this->DirectoryExists()) {
299 return this->DirectoryExists(); // An error is OK if the directory exists.

Completed in 6709 milliseconds