Searched defs:FileSystem (Results 1 - 25 of 57) sorted by relevance

123

/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 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 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 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.
H A Dpatched_file_system.py7 from file_system import FileSystem, StatInfo, FileNotFoundError namespace
35 class PatchedFileSystem(FileSystem):
H A Dcaching_file_system.py8 from file_system import FileSystem, StatInfo, FileNotFoundError namespace
14 class CachingFileSystem(FileSystem):
15 '''FileSystem which implements a caching layer on top of |file_system|. It's
H A Dfile_system.py41 '''The result of calling Stat on a FileSystem.
66 class FileSystem(object): class in inherits:object
67 '''A FileSystem interface that can read files and directories.
88 '''Reads a single file from the FileSystem. Returns a Future with the same
118 '''Asynchronously refreshes the content of the FileSystem, returning a
185 return (isinstance(other, FileSystem) and
H A Dgcs_file_system.py10 from file_system import FileSystem, FileNotFoundError, StatInfo namespace
67 class CloudStorageFileSystem(FileSystem):
68 '''FileSystem implementation which fetches resources from Google Cloud
H A Dlocal_file_system.py9 from file_system import FileSystem, FileNotFoundError, StatInfo namespace
67 class LocalFileSystem(FileSystem):
68 '''FileSystem implementation which fetches resources from the local
H A Dmock_file_system.py7 from file_system import FileSystem, FileNotFoundError namespace
13 class MockFileSystem(FileSystem):
37 # FileSystem implementation.
H A Dtest_file_system.py5 from file_system import FileSystem, FileNotFoundError, StatInfo namespace
98 class TestFileSystem(FileSystem):
99 '''A FileSystem backed by an object. Create with an object representing file
114 # FileSystem implementation.
/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...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DFileSystemWorkspaceBinding.js42 /** @type {!StringMap.<!WebInspector.FileSystemWorkspaceBinding.FileSystem>} */
73 var boundFileSystem = new WebInspector.FileSystemWorkspaceBinding.FileSystem(this, fileSystem, this._workspace);
191 WebInspector.FileSystemWorkspaceBinding.FileSystem = function(fileSystemWorkspaceBinding, isolatedFileSystem, workspace)
204 WebInspector.FileSystemWorkspaceBinding.FileSystem.prototype = {
210 return WebInspector.projectTypes.FileSystem;
299 * @this {WebInspector.FileSystemWorkspaceBinding.FileSystem}
359 * @this {WebInspector.FileSystemWorkspaceBinding.FileSystem}
373 * @this {WebInspector.FileSystemWorkspaceBinding.FileSystem}
409 * @this {WebInspector.FileSystemWorkspaceBinding.FileSystem}
415 * @this {WebInspector.FileSystemWorkspaceBinding.FileSystem}
[all...]
/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...]
/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)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
H A Dfileset.py24 from webkitpy.common.system.filesystem import FileSystem namespace
33 self._filesystem = filesystem or FileSystem()
H A Dzipfileset.py29 from webkitpy.common.system.filesystem import FileSystem namespace
38 self._filesystem = filesystem or FileSystem()
/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/
H A Dprint-stale-test-expectations-entries41 from webkitpy.common.system.filesystem import FileSystem namespace
61 finder = WebKitFinder(FileSystem())
/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/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
H A Dpython.py31 from webkitpy.common.system.filesystem import FileSystem namespace
75 wkf = WebKitFinder(FileSystem())
/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/ppapi/proxy/
H A Dnacl_message_scanner.h50 // FileSystem information for quota auditing.
51 class PPAPI_PROXY_EXPORT FileSystem { class in class:ppapi::proxy::NaClMessageScanner
53 FileSystem();
54 ~FileSystem();
68 DISALLOW_COPY_AND_ASSIGN(FileSystem);
74 FileIO(FileSystem* file_system, int64_t max_written_offset);
88 FileSystem* file_system_;
114 // We intercept FileSystem and FileIO messages to maintain information about
117 typedef std::map<int32_t, FileSystem*> FileSystemMap;
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/webgl/
H A Dupdate_webgl_conformance_tests.py31 from webkitpy.common.system.filesystem import FileSystem namespace
95 detector = scm.SCMDetector(FileSystem(), Executive())

Completed in 580 milliseconds

123