HomeSort by relevance Sort by last modified time
    Searched defs:FileSystem (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/chrome/common/extensions/docs/server2/
fail_on_access_file_system.py 5 from file_system import FileSystem
7 class FailOnAccessFileSystem(FileSystem):
empty_dir_file_system.py 5 from file_system import FileNotFoundError, FileSystem, StatInfo
10 class EmptyDirFileSystem(FileSystem):
11 '''A FileSystem with empty directories. Useful to inject places to disable
offline_file_system.py 5 from file_system import FileSystem, FileNotFoundError
9 class OfflineFileSystem(FileSystem):
10 '''An offline FileSystem which masquerades as another file system. It throws
chroot_file_system.py 8 from file_system import FileSystem
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.
patched_file_system.py 7 from file_system import FileSystem, StatInfo, FileNotFoundError
35 class PatchedFileSystem(FileSystem):
caching_file_system.py 8 from file_system import FileSystem, StatInfo, FileNotFoundError
14 class CachingFileSystem(FileSystem):
15 '''FileSystem which implements a caching layer on top of |file_system|. It's
file_system.py 41 '''The result of calling Stat on a FileSystem.
66 class FileSystem(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
gcs_file_system.py 10 from file_system import FileSystem, FileNotFoundError, StatInfo
20 # Storage as a filesystem.
67 class CloudStorageFileSystem(FileSystem):
68 '''FileSystem implementation which fetches resources from Google Cloud
local_file_system.py 9 from file_system import FileSystem, FileNotFoundError, StatInfo
67 class LocalFileSystem(FileSystem):
68 '''FileSystem implementation which fetches resources from the local
69 filesystem.
mock_file_system.py 7 from file_system import FileSystem, FileNotFoundError
13 class MockFileSystem(FileSystem):
37 # FileSystem implementation.
  /external/chromium_org/ppapi/cpp/
file_system.h 22 /// The <code>FileSystem</code> class identifies the file system type
24 class FileSystem : public Resource {
26 /// Constructs an is_null() filesystem resource. If you use this constructor,
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>
    [all...]
file_system.cc 26 FileSystem::FileSystem() {
29 FileSystem::FileSystem(const FileSystem& other) : Resource(other) {
32 FileSystem::FileSystem(const Resource& resource) : Resource(resource) {
41 FileSystem::FileSystem(PassRef, PP_Resource resource)
45 FileSystem::FileSystem(const InstanceHandle& instance
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
FileSystemWorkspaceBinding.js 42 /** @type {!StringMap.<!WebInspector.FileSystemWorkspaceBinding.FileSystem>} */
63 return "filesystem:" + fileSystemPath;
72 var fileSystem = /** @type {!WebInspector.IsolatedFileSystem} */ (event.data);
73 var boundFileSystem = new WebInspector.FileSystemWorkspaceBinding.FileSystem(this, fileSystem, this._workspace);
74 this._boundFileSystems.put(fileSystem.normalizedPath(), boundFileSystem);
82 var fileSystem = /** @type {!WebInspector.IsolatedFileSystem} */ (event.data);
83 var boundFileSystem = this._boundFileSystems.get(fileSystem.normalizedPath());
85 this._boundFileSystems.remove(fileSystem.normalizedPath());
94 var fileSystemPath = projectId.substr("filesystem:".length)
    [all...]
  /external/chromium_org/ppapi/tests/
test_file_system.cc 16 REGISTER_TEST_CASE(FileSystem);
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. (We cannot test conversion, since this is an assertion on
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
detection.py 32 from webkitpy.common.system.filesystem import FileSystem
42 def __init__(self, filesystem, executive):
43 self._filesystem = filesystem
72 return SVN(cwd=absolute_path, patch_directories=patch_directories, filesystem=self._filesystem, executive=self._executive)
75 return Git(cwd=absolute_path, filesystem=self._filesystem, executive=self._executive)
83 return SCMDetector(FileSystem(), Executive()).detect_scm_system(path, patch_directories)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
fileset.py 24 from webkitpy.common.system.filesystem import FileSystem
29 def __init__(self, fileset, filename, filesystem=None):
33 self._filesystem = filesystem or FileSystem()
zipfileset.py 29 from webkitpy.common.system.filesystem import FileSystem
34 def __init__(self, zip_url, filesystem=None, zip_factory=None):
38 self._filesystem = filesystem or FileSystem()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/
patchreader.py 36 from webkitpy.common.system.filesystem import FileSystem
57 fs = fs or FileSystem()
72 cwd = FileSystem().getcwd()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
print-stale-test-expectations-entries 41 from webkitpy.common.system.filesystem import FileSystem
61 finder = WebKitFinder(FileSystem())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/
find_files_unittest.py 32 from webkitpy.common.system.filesystem import FileSystem
45 def assert_filesystem_normalizes(self, filesystem):
46 self.assertEqual(find_files._normalize(filesystem, "c:\\foo",
61 self.assert_filesystem_normalizes(FileSystem())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
python.py 31 from webkitpy.common.system.filesystem import FileSystem
75 wkf = WebKitFinder(FileSystem())
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
FileSystem.java 30 public interface FileSystem {
33 * Gets the root entry of this filesystem. This is usually a directory, but
42 * Returns if this {@code FileSystem} is in read-only mode.
44 * @return if this {@code FileSystem} is read-only
  /external/chromium_org/chrome/browser/devtools/
devtools_file_helper.h 30 struct FileSystem {
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/
nacl_message_scanner.h 50 // FileSystem information for quota auditing.
51 class PPAPI_PROXY_EXPORT FileSystem {
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/
update_webgl_conformance_tests.py 31 from webkitpy.common.system.filesystem import FileSystem
95 detector = scm.SCMDetector(FileSystem(), Executive())

Completed in 278 milliseconds

1 2 3