HomeSort by relevance Sort by last modified time
    Searched refs:compiled_fs (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/common/extensions/docs/server2/
compiled_file_system_test.py 66 compiled_fs = _CreateFactory().Create(Sleepy, CompiledFileSystemTest)
68 compiled_fs.GetFromFile('404.html'))
70 compiled_fs.GetFromFile('apps/a11y.html'))
72 compiled_fs.GetFromFile('/apps/fakedir/file.html'))
75 compiled_fs = _CreateFactory().Create(identity, CompiledFileSystemTest)
76 self.assertEqual('404.html contents', compiled_fs.GetFromFile('404.html'))
78 set(compiled_fs.GetFromFileListing('apps/fakedir')))
80 compiled_fs._file_system._obj['404.html'] = 'boom'
81 compiled_fs._file_system._obj['apps']['fakedir']['boom.html'] = 'blam'
82 self.assertEqual('404.html contents', compiled_fs.GetFromFile('404.html')
    [all...]
chained_compiled_file_system.py 50 for compiled_fs, _ in reversed(self._compiled_fs_chain):
51 if compiled_fs.StatFile(path) == version:
52 return compiled_fs.GetFromFile(path, binary)
64 for compiled_fs, _ in reversed(self._compiled_fs_chain):
65 if compiled_fs.StatFileListing(path) == version:
66 return compiled_fs.GetFromFileListing(path)
api_list_data_source.py 73 def __init__(self, compiled_fs, api_path):
74 self._compiled_fs = compiled_fs

Completed in 1494 milliseconds