Searched refs:IsDirectory (Results 1 - 25 of 108) sorted by relevance

12345

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dempty_dir_file_system.py7 from path_util import IsDirectory namespace
17 if not IsDirectory(path):
27 if not IsDirectory(path):
H A Dpath_util.py12 def IsDirectory(path): function
61 IsDirectory(result) is True (and does not fail assertions). If |path| is
64 return path if IsDirectory(path) else (path + '/')
68 assert IsDirectory(path), '"%s" is not a directory' % path
72 assert not IsDirectory(path), '"%s" is not a file' % path
H A Dgcs_file_system_provider.py12 from path_util import IsDirectory, ToDirectory namespace
63 if IsDirectory(bucket_local_path):
H A Dgcs_file_system.py13 AssertIsDirectory, AssertIsFile, AssertIsValid, IsDirectory, Join)
57 if IsDirectory(full_path):
90 if IsDirectory(path):
H A Dgitiles_file_system.py23 from path_util import AssertIsValid, IsDirectory, ToDirectory namespace
141 return path + (_JSON_FORMAT if IsDirectory(path) else _TEXT_FORMAT)
154 value[path] = (list_dir if IsDirectory(path) else b64decode)(content)
216 if IsDirectory(path):
/external/chromium_org/storage/browser/fileapi/
H A Dfile_system_file_util.cc21 bool FileSystemFileUtil::EmptyFileEnumerator::IsDirectory() { function in class:storage::FileSystemFileUtil::EmptyFileEnumerator
H A Dfile_system_file_util.h47 virtual bool IsDirectory() = 0;
55 virtual bool IsDirectory() OVERRIDE;
/external/chromium_org/chrome/browser/media_galleries/linux/
H A Dmtp_device_object_enumerator.h23 bool IsDirectory();
H A Dmtp_device_object_enumerator.cc36 bool MTPDeviceObjectEnumerator::IsDirectory() { function in class:MTPDeviceObjectEnumerator
H A Dmtp_device_object_enumerator_unittest.cc25 EXPECT_FALSE(enumerator->IsDirectory());
62 EXPECT_EQ(kTestCases[i].is_directory, enumerator.IsDirectory());
/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_object_enumerator.h27 bool IsDirectory();
H A Dmtp_device_object_enumerator_unittest.cc45 EXPECT_FALSE(enumerator->IsDirectory());
81 EXPECT_EQ(kTestCases[i].is_directory, enumerator.IsDirectory());
H A Dmtp_device_object_enumerator.cc43 bool MTPDeviceObjectEnumerator::IsDirectory() { function in class:MTPDeviceObjectEnumerator
/external/chromium_org/chrome/browser/sync_file_system/
H A Dfile_change.h31 bool IsDirectory() const { return file_type_ == SYNC_FILE_TYPE_DIRECTORY; } function in class:sync_file_system::FileChange
32 bool IsTypeUnknown() const { return !IsFile() && !IsDirectory(); }
/external/clang/lib/Basic/
H A DFileSystemStatCache.cpp39 Data.IsDirectory = Status.isDirectory();
110 if (Data.IsDirectory != isForDir) {
134 if (!Data.IsDirectory || llvm::sys::path::is_absolute(Path))
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwinKernel.cpp341 if (ios_sdk.Exists() && ios_sdk.IsDirectory())
358 if (mac_sdk.Exists() && mac_sdk.IsDirectory())
368 if (generic_sdk.Exists() && generic_sdk.IsDirectory())
383 if (sle.Exists() && sle.IsDirectory())
389 if (le.Exists() && le.IsDirectory())
395 if (kdk.Exists() && kdk.IsDirectory())
412 if (symbols_dir.Exists() && symbols_dir.IsDirectory())
429 if (dir.Exists() && dir.IsDirectory())
438 if (dir_sle.Exists() && dir_sle.IsDirectory())
491 if (kext_directory.Exists() && kext_directory.IsDirectory())
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_change.h40 bool IsDirectory() const { return file_type_ == FILE_TYPE_DIRECTORY; } function in class:drive::FileChange::Change
41 bool IsTypeUnknown() const { return !IsFile() && !IsDirectory(); }
/external/clang/include/clang/Basic/
H A DFileSystemStatCache.h36 bool IsDirectory; member in struct:clang::FileData
41 : Size(0), ModTime(0), IsDirectory(false), IsNamedPipe(false),
/external/chromium_org/base/files/
H A Dfile_enumerator.h45 bool IsDirectory() const;
/external/chromium_org/net/base/
H A Ddirectory_lister.cc39 bool a_is_directory = a.info.IsDirectory();
40 bool b_is_directory = b.info.IsDirectory();
57 bool a_is_directory = a.info.IsDirectory();
58 bool b_is_directory = b.info.IsDirectory();
H A Ddirectory_lister_unittest.cc66 if (file_list_[previous].IsDirectory() &&
67 !file_list_[current].IsDirectory()) {
72 EXPECT_EQ(file_list_[previous].IsDirectory(),
73 file_list_[current].IsDirectory());
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-filepath.h163 bool IsDirectory() const;
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-filepath.h167 bool IsDirectory() const;
/external/gtest/include/gtest/internal/
H A Dgtest-filepath.h163 bool IsDirectory() const;
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-filepath.h167 bool IsDirectory() const;

Completed in 353 milliseconds

12345