/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 8 class EmptyDirFileSystem(FileSystem): 9 '''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
|
caching_file_system.py | 8 from file_system import FileSystem, StatInfo, FileNotFoundError 35 class CachingFileSystem(FileSystem): 36 '''FileSystem which implements a caching layer on top of |file_system|. It's
|
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.
|
local_file_system.py | 9 from file_system import FileSystem, FileNotFoundError, StatInfo 59 class LocalFileSystem(FileSystem): 60 '''FileSystem implementation which fetches resources from the local 61 filesystem.
|
patched_file_system.py | 7 from file_system import FileSystem, StatInfo, FileNotFoundError 38 class PatchedFileSystem(FileSystem):
|
test_file_system.py | 5 from file_system import FileSystem, FileNotFoundError, StatInfo 31 class TestFileSystem(FileSystem): 32 '''A FileSystem backed by an object. Create with an object representing file 46 # FileSystem implementation.
|
file_system.py | 34 '''The result of calling Stat on a FileSystem. 56 class FileSystem(object): 57 '''A FileSystem interface that can read files and directories. 74 '''Reads a single file from the FileSystem. Returns a Future with the same 81 '''Asynchronously refreshes the content of the FileSystem, returning a
|
mock_file_system.py | 5 from file_system import FileSystem, FileNotFoundError 9 class MockFileSystem(FileSystem): 33 # 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/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()
|
filereader_unittest.py | 25 from webkitpy.common.system.filesystem import FileSystem 54 # FIXME: This should be a MockFileSystem once TextFileReader is moved entirely on top of FileSystem. 55 self.filesystem = FileSystem() 56 self._temp_dir = str(self.filesystem.mkdtemp()) 58 self._file_reader = TextFileReader(self.filesystem, self._processor) 62 self.filesystem.rmtree(self._temp_dir) 67 file_path = self.filesystem.join(self._temp_dir, rel_path) 68 self.filesystem.write_text_file(file_path, text [all...] |
/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/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/layout_tests/ |
bisect_test_ordering.py | 37 from webkitpy.common.system.filesystem import FileSystem 58 self.webkit_finder = WebKitFinder(FileSystem())
|