|   /external/chromium_org/chrome/common/extensions/docs/server2/ | 
| test_file_system.py  | 5 from file_system import FileSystem, FileNotFoundError, StatInfo 98 class TestFileSystem(FileSystem): 99   '''A FileSystem backed by an object. Create with an object representing file 114   # FileSystem implementation.
  | 
| github_file_system.py  | 14 from file_system import FileSystem, StatInfo 64 class GithubFileSystem(FileSystem):
  | 
| new_github_file_system.py  | 16 from file_system import FileNotFoundError, FileSystem, FileSystemError, StatInfo 95 class GithubFileSystem(FileSystem):
  | 
|   /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())
  | 
| layout_tests_mover.py  | 55 from webkitpy.common.system.filesystem import FileSystem 76         self._filesystem = self._port.host.filesystem 253         def is_test_source_file(filesystem, dirname, basename): 256             return (Port.is_test_file(filesystem, dirname, basename) or pass_regex.search(basename)) and not fail_regex.search(basename) 279         # Note that FileSystem.move() may silently overwrite existing files, but we
  | 
|   /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ | 
| 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/webkitpy/test/ | 
| main_unittest.py  | 28 from webkitpy.common.system.filesystem import FileSystem 108         filesystem = FileSystem() 110         module_path = filesystem.path_to_module(self.__module__) 112         proc = executive.popen([sys.executable, filesystem.join(script_dir, 'test-webkitpy'), '-c', STUBS_CLASS + '.test_empty'],
  | 
| runner_unittest.py  | 28 from webkitpy.common.system.filesystem import FileSystem 96         runner = Runner(Printer(stream, options), loader, WebKitFinder(FileSystem()))
  | 
| main.py  | 37 from webkitpy.common.system.filesystem import FileSystem 51     filesystem = FileSystem() 52     wkf = WebKitFinder(filesystem) 53     tester = Tester(filesystem, wkf) 77     def __init__(self, filesystem=None, webkit_finder=None): 78         self.filesystem = filesystem or FileSystem()     [all...] | 
|   /external/chromium_org/ppapi/proxy/ | 
| nacl_message_scanner.cc  | 236 NaClMessageScanner::FileSystem::FileSystem() 240 NaClMessageScanner::FileSystem::~FileSystem() { 243 bool NaClMessageScanner::FileSystem::UpdateReservedQuota(int64_t delta) { 253 NaClMessageScanner::FileIO::FileIO(FileSystem* file_system, 361   // Audit FileIO and FileSystem messages to ensure that the plugin doesn't 425         // Audit FileSystem ReserveQuota messages to make sure the plugin 501           // Look up the FileSystem by inserting a new one. If it was already 503           FileSystem* file_system = NULL     [all...] | 
|   /external/chromium_org/chrome/browser/chromeos/drive/ | 
| file_system.h  | 64 class FileSystem : public FileSystemInterface, 68   FileSystem(PrefService* pref_service, 76   virtual ~FileSystem(); 296   base::WeakPtrFactory<FileSystem> weak_ptr_factory_; 298   DISALLOW_COPY_AND_ASSIGN(FileSystem);
  | 
| file_system.cc  | 241 struct FileSystem::CreateDirectoryParams { 248 FileSystem::FileSystem( 272 FileSystem::~FileSystem() { 279 void FileSystem::Reset(const FileOperationCallback& callback) { 294 void FileSystem::ResetComponents() { 383 void FileSystem::CheckForUpdates() { 388       base::Bind(&FileSystem::OnUpdateChecked, weak_ptr_factory_.GetWeakPtr())); 391 void FileSystem::OnUpdateChecked(FileError error)      [all...] | 
|   /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/ | 
| scm.py  | 37 from webkitpy.common.system.filesystem import FileSystem 44     def __init__(self, cwd, executive=None, filesystem=None): 47         self._filesystem = filesystem or FileSystem()
  | 
| scm_unittest.py  | 37 from webkitpy.common.system.filesystem import FileSystem 68         self.fs = FileSystem() 123     # GitTest. We create a mock SVN repo once and then perform an SVN checkout from a filesystem copy of 680         scm = Git(cwd=".", executive=MockExecutive(), filesystem=MockFileSystem())
  | 
|   /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ | 
| filesystem_unittest.py  | 40 from webkitpy.common.system.filesystem import FileSystem 44     """Tests that should pass on either a real or mock filesystem.""" 124         self.fs = FileSystem() 136         fs = FileSystem() 146         fs = FileSystem() 153         fs = FileSystem() 157         fs = FileSystem() 161         fs = FileSystem() 165         fs = FileSystem()     [all...] | 
| executive.py  | 41 from webkitpy.common.system.filesystem import FileSystem 152         fs = fs or FileSystem() 169         fs = fs or FileSystem()
  | 
| filesystem.py  | 42 class FileSystem(object): 43     """FileSystem interface for webkitpy. 86                 with the filesystem object and the dirname and basename of 245             exceptions.WindowsError = FileSystem._WindowsError
  | 
|   /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/ | 
| FileSystemModel.js  | 96             var fileSystem = this._fileSystemsForOrigin[securityOrigin][type]; 98             this._fileSystemRemoved(fileSystem); 129      * @param {!WebInspector.FileSystemModel.FileSystem} fileSystem 131     _fileSystemAdded: function(fileSystem) 133         this.dispatchEventToListeners(WebInspector.FileSystemModel.EventTypes.FileSystemAdded, fileSystem); 137      * @param {!WebInspector.FileSystemModel.FileSystem} fileSystem 139     _fileSystemRemoved: function(fileSystem) 141         this.dispatchEventToListeners(WebInspector.FileSystemModel.EventTypes.FileSystemRemoved, fileSystem);     [all...] | 
| Workspace.js  | 530     FileSystem: "filesystem",
  | 
|   /external/chromium_org/chrome/browser/devtools/ | 
| devtools_file_helper.cc  | 169 DevToolsFileHelper::FileSystem CreateFileSystemStruct( 182   return DevToolsFileHelper::FileSystem(file_system_name, 200 DevToolsFileHelper::FileSystem::FileSystem() { 203 DevToolsFileHelper::FileSystem::FileSystem(const std::string& file_system_name, 313       Bind(callback, FileSystem()), 326     callback.Run(FileSystem()); 349     callback.Run(FileSystem()); 369     callback.Run(FileSystem()); 384  FileSystem filesystem = CreateFileSystemStruct(web_contents_,  local  404  FileSystem filesystem = CreateFileSystemStruct(web_contents_,  local      [all...] | 
|   /external/clang/include/clang/Basic/ | 
| VirtualFileSystem.h  | 10 /// \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> { 186   virtual ~FileSystem(); 208 /// \brief Gets an \p vfs::FileSystem for the 'real' file system, as seen by 210 IntrusiveRefCntPtr<FileSystem> getRealFileSystem()     [all...] | 
|   /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/ | 
| memenv.cc  | 234     for (FileSystem::iterator i = file_map_.begin(); i != file_map_.end(); ++i){ 289     for (FileSystem::iterator i = file_map_.begin(); i != file_map_.end(); ++i){ 373   typedef std::map<std::string, FileState*> FileSystem; 375   FileSystem file_map_;  // Protected by mutex_.
  | 
|   /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/ | 
| cpp_unittest.py  | 45 from webkitpy.common.system.filesystem import FileSystem     [all...] | 
| cpp.py  | 49 from webkitpy.common.system.filesystem import FileSystem     [all...] | 
|   /external/clang/lib/Basic/ | 
| VirtualFileSystem.cpp  | 68 FileSystem::~FileSystem() {} 70 std::error_code FileSystem::getBufferForFile( 161 class RealFileSystem : public FileSystem { 189 IntrusiveRefCntPtr<FileSystem> vfs::getRealFileSystem() { 190   static IntrusiveRefCntPtr<FileSystem> FS = new RealFileSystem(); 237 OverlayFileSystem::OverlayFileSystem(IntrusiveRefCntPtr<FileSystem> BaseFS) { 241 void OverlayFileSystem::pushOverlay(IntrusiveRefCntPtr<FileSystem> FS) { 477 class VFSFromYAML : public vfs::FileSystem { 480   IntrusiveRefCntPtr<FileSystem> ExternalFS     [all...] |