Searched defs:IsDirectory (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/webkit/browser/fileapi/
H A Dfile_system_file_util.cc21 bool FileSystemFileUtil::EmptyFileEnumerator::IsDirectory() { function in class:fileapi::FileSystemFileUtil::EmptyFileEnumerator
/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
50 IsDirectory(result) is True (and does not fail assertions). If |path| is
53 return path if IsDirectory(path) else (path + '/')
57 assert IsDirectory(path), '"%s" is not a directory' % path
61 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 Dfake_url_fetcher.py9 from path_util import AssertIsDirectory, IsDirectory namespace
68 if IsDirectory(url):
H A Dcaching_file_system.py10 from path_util import IsDirectory namespace
81 assert IsDirectory(dir_path)
H A Dcontent_provider.py16 from path_util import AssertIsValid, IsDirectory, Join, ToDirectory namespace
H A Dfake_fetchers.py14 from path_util import IsDirectory namespace
58 if IsDirectory(path):
H A Dmock_file_system.py10 from path_util import IsDirectory namespace
132 if not IsDirectory(path):
H A Dtest_file_system.py7 from path_util import AssertIsValid, AssertIsDirectory, IsDirectory namespace
74 if IsDirectory(path):
H A Dgithub_file_system.py16 from path_util import IsDirectory namespace
155 if IsDirectory(path):
H A Dnew_github_file_system.py19 from path_util import AssertIsDirectory, IsDirectory namespace
255 if IsDirectory(path):
285 if IsDirectory(path):
/external/chromium_org/chrome/browser/media_galleries/linux/
H A Dmtp_device_object_enumerator.cc36 bool MTPDeviceObjectEnumerator::IsDirectory() { function in class:MTPDeviceObjectEnumerator
/external/chromium_org/chrome/browser/media_galleries/win/
H A Dmtp_device_object_enumerator.cc43 bool MTPDeviceObjectEnumerator::IsDirectory() { function in class:MTPDeviceObjectEnumerator
H A Dmtp_device_operations_util.cc88 bool IsDirectory(IPortableDeviceValues* properties_values) { function in namespace:media_transfer_protocol::__anon4206
216 *is_directory = IsDirectory(properties_values.get());
/external/chromium_org/base/files/
H A Dfile_enumerator_win.cc21 bool FileEnumerator::FileInfo::IsDirectory() const { function in class:base::FileEnumerator::FileInfo
H A Dfile_enumerator_posix.cc22 bool FileEnumerator::FileInfo::IsDirectory() const { function in class:base::FileEnumerator::FileInfo
/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/include/clang/Basic/
H A DFileSystemStatCache.h36 bool IsDirectory; member in struct:clang::FileData
41 : Size(0), ModTime(0), IsDirectory(false), IsNamedPipe(false),
/external/lldb/include/lldb/Host/
H A DFileSpec.h424 IsDirectory () const function in class:lldb_private::FileSpec
/external/chromium_org/testing/gtest/src/
H A Dgtest-filepath.cc293 bool FilePath::IsDirectory() const { function in class:testing::internal::FilePath
302 if (!this->IsDirectory()) {
340 return IsDirectory()
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dfileutils.cc125 bool DirectoryIterator::IsDirectory() const { function in class:talk_base::DirectoryIterator
219 if (di->IsDirectory()) {
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-filepath.cc293 bool FilePath::IsDirectory() const { function in class:testing::internal::FilePath
302 if (!this->IsDirectory()) {
340 return IsDirectory()
/external/chromium_org/third_party/webrtc/base/
H A Dfileutils.cc108 bool DirectoryIterator::IsDirectory() const { function in class:rtc::DirectoryIterator
202 if (di->IsDirectory()) {
/external/chromium_org/tools/strict_enum_value_checker/
H A Dstrict_enum_value_checker_test.py74 def IsDirectory(self): member in class:MockFile
99 if self.IsDirectory():

Completed in 2262 milliseconds

12