HomeSort by relevance Sort by last modified time
    Searched defs:FileSystem (Results 1 - 25 of 51) 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):
offline_file_system.py 5 from file_system import FileSystem, FileNotFoundError
7 class OfflineFileSystem(FileSystem):
8 '''An offline FileSystem which masquerades as another file system. It throws
empty_dir_file_system.py 5 from file_system import FileNotFoundError, FileSystem, StatInfo
8 class EmptyDirFileSystem(FileSystem):
9 '''A FileSystem with empty directories. Useful to inject places to disable
caching_file_system.py 5 from file_system import FileSystem, StatInfo, FileNotFoundError
32 class CachingFileSystem(FileSystem):
33 '''FileSystem which implements a caching layer on top of |file_system|. It's
file_system.py 10 '''The result of calling Stat on a FileSystem.
40 class FileSystem(object):
41 '''A FileSystem interface that can read files and directories.
55 '''Reads a single file from the FileSystem.
local_file_system.py 9 from file_system import FileSystem, FileNotFoundError, StatInfo, ToUnicode
63 class LocalFileSystem(FileSystem):
64 '''FileSystem implementation which fetches resources from the local
65 filesystem.
mock_file_system.py 5 from file_system import FileSystem, FileNotFoundError
9 class MockFileSystem(FileSystem):
32 # FileSystem implementation.
patched_file_system.py 7 from file_system import FileSystem, StatInfo, FileNotFoundError
38 class PatchedFileSystem(FileSystem):
patched_file_system_test.py 9 from file_system import FileSystem, FileNotFoundError, StatInfo
test_file_system.py 5 from file_system import FileSystem, FileNotFoundError, StatInfo
8 class TestFileSystem(FileSystem):
9 '''A FileSystem backed by an object. Create with an object representing file
37 # FileSystem implementation.
caching_file_system_test.py 11 from file_system import FileSystem, StatInfo
subversion_file_system.py 13 from file_system import FileSystem, FileNotFoundError, StatInfo, ToUnicode
134 class SubversionFileSystem(FileSystem):
  /external/chromium_org/ppapi/cpp/
file_system.cc 25 FileSystem::FileSystem() {
28 FileSystem::FileSystem(const FileSystem& other) : Resource(other) {
31 FileSystem::FileSystem(PassRef, PP_Resource resource)
35 FileSystem::FileSystem(const InstanceHandle& instance,
43 int32_t FileSystem::Open(int64_t expected_size
    [all...]
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);
40 FileSystem(PassRef, PP_Resource resource)
    [all...]
  /external/chromium_org/ppapi/tests/
test_file_system.cc 14 REGISTER_TEST_CASE(FileSystem);
29 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
37 pp::FileSystem fs(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
50 pp::FileSystem file_system(instance_, PP_FILESYSTEMTYPE_LOCALTEMPORARY);
56 // FileSystem should not allow multiple opens.
  /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/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 30 from webkitpy.common.system.filesystem import FileSystem
74 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&)>
72 // If user cancels folder selection, passes empty FileSystem struct to
75 // permissions, registers isolated file system for it and passes FileSystem
84 // FileSystem structs for registered file systems to |callback|.
  /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())
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
checkout_unittest.py 40 from webkitpy.common.system.filesystem import FileSystem # FIXME: This should not be needed.
49 return Checkout(scm=MockSCM(), filesystem=MockFileSystem(), executive=MockExecutive())

Completed in 387 milliseconds

1 2 3