Searched refs:FileSystem (Results 1 - 25 of 111) sorted by relevance

12345

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dfail_on_access_file_system.py5 from file_system import FileSystem namespace
7 class FailOnAccessFileSystem(FileSystem):
H A Doffline_file_system.py5 from file_system import FileSystem, FileNotFoundError namespace
9 class OfflineFileSystem(FileSystem):
10 '''An offline FileSystem which masquerades as another file system. It throws
H A Dempty_dir_file_system.py5 from file_system import FileNotFoundError, FileSystem, StatInfo namespace
10 class EmptyDirFileSystem(FileSystem):
11 '''A FileSystem with empty directories. Useful to inject places to disable
H A Dchroot_file_system.py8 from file_system import FileSystem namespace
12 class ChrootFileSystem(FileSystem):
13 '''ChrootFileSystem(fs, path) exposes a FileSystem whose root is |path| inside
20 |file_system| The FileSystem instance to transpose paths of.
/external/chromium_org/ppapi/cpp/
H A Dfile_system.h22 /// The <code>FileSystem</code> class identifies the file system type
24 class FileSystem : public Resource { class in namespace:pp
27 /// you will have to assign it to a "real" FileSystem object before you can
29 FileSystem();
31 /// The copy constructor for <code>FileSystem</code>.
33 /// @param[in] other A reference to a <code>FileSystem</code>.
34 FileSystem(const FileSystem& other);
36 /// Constructs a <code>FileSystem</code> from a <code>Resource</code>.
39 explicit FileSystem(cons
[all...]
H A Dfile_system.cc26 FileSystem::FileSystem() { function in class:pp::FileSystem
29 FileSystem::FileSystem(const FileSystem& other) : Resource(other) { function in class:pp::FileSystem
32 FileSystem::FileSystem(const Resource& resource) : Resource(resource) { function in class:pp::FileSystem
41 FileSystem::FileSystem(PassRef, PP_Resource resource) function in class:pp::FileSystem
45 FileSystem function in class:pp::FileSystem
[all...]
H A Dfile_ref.h21 class FileSystem;
52 /// @param[in] file_system A <code>FileSystem</code> corresponding to a file
55 FileRef(const FileSystem& file_system, const char* path);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DHTMLInputElementFileSystem.idl32 RuntimeEnabled=FileSystem,
H A DWorkerGlobalScopeFileSystem.idl31 [RuntimeEnabled=FileSystem, MeasureAs=RequestFileSystemWorker] void webkitRequestFileSystem(unsigned short type, long long size, optional FileSystemCallback successCallback, optional ErrorCallback errorCallback);
32 [RuntimeEnabled=FileSystem, RaisesException, MeasureAs=RequestFileSystemSyncWorker] DOMFileSystemSync webkitRequestFileSystemSync(unsigned short type, long long size);
33 [RuntimeEnabled=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url, EntryCallback successCallback, optional ErrorCallback errorCallback);
34 [RuntimeEnabled=FileSystem, RaisesException] EntrySync webkitResolveLocalFileSystemSyncURL(DOMString url);
36 [RuntimeEnabled=FileSystem] attribute FileErrorConstructor FileError;
H A DWindowFileSystem.idl33 [RuntimeEnabled=FileSystem, MeasureAs=RequestFileSystem] void webkitRequestFileSystem(unsigned short type, long long size,
35 [RuntimeEnabled=FileSystem] void webkitResolveLocalFileSystemURL(DOMString url,
/external/chromium_org/ppapi/proxy/
H A Dnacl_message_scanner.h55 // FileSystem information for quota auditing.
56 class PPAPI_PROXY_EXPORT FileSystem { class in class:ppapi::proxy::NaClMessageScanner
58 FileSystem();
59 ~FileSystem();
73 DISALLOW_COPY_AND_ASSIGN(FileSystem);
79 FileIO(FileSystem* file_system, int64_t max_written_offset);
93 FileSystem* file_system_;
111 // We intercept FileSystem and FileIO messages to maintain information about
114 typedef std::map<int32_t, FileSystem*> FileSystemMap;
/external/chromium_org/ppapi/tests/
H A Dtest_file_system.cc16 REGISTER_TEST_CASE(FileSystem); variable
32 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
40 pp::FileSystem fs(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
53 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
59 // FileSystem should not allow multiple opens.
75 // Test conversion from file system Resource to FileSystem.
76 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
78 ASSERT_TRUE(pp::FileSystem::IsFileSystem(file_system_resource));
79 pp::FileSystem file_system_resource_file_system(file_system_resource);
83 // FileSystem
[all...]
H A Dtest_file_io.h14 class FileSystem;
59 std::string MatchOpenExpectations(pp::FileSystem* file_system,
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
H A Dfind_files_unittest.py32 from webkitpy.common.system.filesystem import FileSystem namespace
61 self.assert_filesystem_normalizes(FileSystem())
/external/chromium_org/ppapi/cpp/private/
H A Dext_crx_file_system_private.h23 int32_t Open(const CompletionCallbackWithOutput<pp::FileSystem>& cc);
H A Disolated_file_system_private.h25 int32_t Open(const CompletionCallbackWithOutput<pp::FileSystem>& cc);
H A Dext_crx_file_system_private.cc31 const CompletionCallbackWithOutput<pp::FileSystem>& cc) {
H A Disolated_file_system_private.cc33 const CompletionCallbackWithOutput<pp::FileSystem>& cc) {
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_system.cc242 struct FileSystem::CreateDirectoryParams {
249 FileSystem::FileSystem( function in class:drive::FileSystem
273 FileSystem::~FileSystem() {
280 void FileSystem::Reset(const FileOperationCallback& callback) {
295 void FileSystem::ResetComponents() {
382 void FileSystem::CheckForUpdates() {
387 base::Bind(&FileSystem::OnUpdateChecked, weak_ptr_factory_.GetWeakPtr()));
390 void FileSystem
[all...]
/external/clang/include/clang/Basic/
H A DVirtualFileSystem.h10 /// \brief Defines the virtual file system interface vfs::FileSystem.
20 #include "llvm/Support/FileSystem.h"
152 class FileSystem;
160 FileSystem *FS;
164 recursive_directory_iterator(FileSystem &FS, const Twine &Path,
184 class FileSystem : public llvm::ThreadSafeRefCountedBase<FileSystem> { class in namespace:clang::vfs
186 virtual ~FileSystem();
208 /// \brief Gets an \p vfs::FileSystem for the 'real' file system, as seen by
210 IntrusiveRefCntPtr<FileSystem> getRealFileSyste
[all...]
H A DFileSystemStatCache.h20 #include "llvm/Support/FileSystem.h"
27 class FileSystem;
73 vfs::FileSystem &FS);
95 vfs::FileSystem &FS) = 0;
98 std::unique_ptr<vfs::File> *F, vfs::FileSystem &FS) {
124 vfs::FileSystem &FS) override;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
H A Dpatchreader.py36 from webkitpy.common.system.filesystem import FileSystem namespace
57 fs = fs or FileSystem()
72 cwd = FileSystem().getcwd()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfilesystem_unittest.py40 from webkitpy.common.system.filesystem import FileSystem namespace
140 self.fs = FileSystem()
152 fs = FileSystem()
162 fs = FileSystem()
169 fs = FileSystem()
173 fs = FileSystem()
177 fs = FileSystem()
181 fs = FileSystem()
185 fs = FileSystem()
189 fs = FileSystem()
[all...]
/external/chromium_org/chrome/browser/devtools/
H A Ddevtools_file_helper.h30 struct FileSystem { struct in class:DevToolsFileHelper
31 FileSystem();
32 FileSystem(const std::string& file_system_name,
47 void(const std::vector<DevToolsFileHelper::FileSystem>&)>
49 typedef base::Callback<void(const DevToolsFileHelper::FileSystem&)>
73 // If user cancels folder selection, passes empty FileSystem struct to
78 // permissions, registers isolated file system for it and passes FileSystem
89 // permissions, registers isolated file system for it and passes FileSystem
100 // FileSystem structs for registered file systems to |callback|.
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
H A Ddetection.py32 from webkitpy.common.system.filesystem import FileSystem namespace
83 return SCMDetector(FileSystem(), Executive()).detect_scm_system(path, patch_directories)

Completed in 458 milliseconds

12345