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

12

/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 Dlocal_file_util.cc40 virtual bool IsDirectory() OVERRIDE;
71 bool LocalFileEnumerator::IsDirectory() { function in class:storage::LocalFileEnumerator
72 return file_util_info_.IsDirectory();
H A Dnative_file_util.cc89 virtual bool IsDirectory() OVERRIDE;
111 bool NativeFileEnumerator::IsDirectory() { function in class:storage::NativeFileEnumerator
112 return file_util_info_.IsDirectory();
/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 Dgcs_file_system_provider.py12 from path_util import IsDirectory, ToDirectory namespace
63 if IsDirectory(bucket_local_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 Dcaching_file_system.py10 from path_util import AssertIsDirectory, IsDirectory, ToDirectory namespace
76 assert IsDirectory(dir_path)
163 if IsDirectory(f):
H A Dfake_url_fetcher.py9 from path_util import AssertIsDirectory, IsDirectory namespace
68 if IsDirectory(url):
H A Dgitiles_file_system_test.py16 from path_util import IsDirectory namespace
72 'type': 'tree' if IsDirectory(name) else 'blob'
H A Dmock_file_system.py10 from path_util import IsDirectory namespace
137 if not IsDirectory(path):
H A Dtest_file_system.py7 from path_util import AssertIsValid, AssertIsDirectory, IsDirectory namespace
74 if IsDirectory(path):
H A Dcontent_provider.py15 from path_util import AssertIsValid, IsDirectory, Join, ToDirectory namespace
H A Dfake_fetchers.py16 from path_util import IsDirectory namespace
60 if IsDirectory(path):
H A Dgithub_file_system.py16 from path_util import IsDirectory namespace
155 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):
H A Dnew_github_file_system.py19 from path_util import AssertIsDirectory, IsDirectory namespace
253 if IsDirectory(path):
283 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::__anon4277
212 *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/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/lldb/include/lldb/Host/
H A DFileSpec.h424 IsDirectory () const function in class:lldb_private::FileSpec

Completed in 301 milliseconds

12