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

  /external/chromium_org/chrome/common/extensions/docs/server2/
mock_file_system_test.py 75 self.assertEqual(StatInfo('0', child_versions={
81 self.assertEqual(StatInfo('0', child_versions={
92 self.assertEqual(StatInfo('1', child_versions={
98 self.assertEqual(StatInfo('0', child_versions={
114 self.assertEqual(StatInfo('2', child_versions={
120 self.assertEqual(StatInfo('2', child_versions={
126 self.assertEqual(StatInfo('2', child_versions={
130 self.assertEqual(StatInfo('0', child_versions={
file_system.py 12 def __init__(self, version, child_versions=None):
14 self.child_versions = child_versions
19 self.child_versions == other.child_versions)
25 return '{version: %s, child_versions: %s}' % (self.version,
26 self.child_versions)
63 the directory in |StatInfo.child_versions|.
mock_file_system.py 66 child_versions = result.child_versions
67 if child_versions is not None:
68 for child_path in child_versions.iterkeys():
69 child_versions[child_path] = self._UpdateStat(
70 child_versions[child_path],
patched_file_system.py 103 assert stat_info.child_versions is not None
111 stat_info.child_versions[child] = version
113 if stat_info.child_versions.get(child):
114 del stat_info.child_versions[child]
152 if stat_info.child_versions is not None:
154 if filename in stat_info.child_versions:
155 stat_info = StatInfo(stat_info.child_versions[filename])
test_file_system_test.py 75 self.assertEquals(StatInfo('0', child_versions={
82 self.assertEquals(StatInfo('1', child_versions={
89 self.assertEquals(StatInfo('1', child_versions={
96 self.assertEquals(StatInfo('2', child_versions={
103 self.assertEquals(StatInfo('3', child_versions={
110 self.assertEquals(StatInfo('3', child_versions={
empty_dir_file_system.py 23 return StatInfo(0, child_versions=[])
local_file_system.py 49 child_versions = dict((_ConvertFromFilepath(filename),
55 version = max([path_mtime] + child_versions.values())
57 child_versions = None
59 return StatInfo(version, child_versions)
subversion_file_system.py 42 child_versions = {}
90 child_versions[name] = str(version)
92 if parent_version and child_versions:
95 return StatInfo(parent_version, child_versions)
190 if filename not in stat_info.child_versions:
193 return StatInfo(stat_info.child_versions[filename])
subversion_file_system_test.py 53 child_versions=json.loads(test_util.ReadFile('%s/stat_result.json' %
112 self.assertEqual({}, dir_stat.child_versions)
caching_file_system_test.py 158 StatInfo('0', child_versions={'bob0': '0', 'bob1': '0'}),
168 StatInfo('0', child_versions={'bob0': '0', 'bob1': '0'}),
185 StatInfo(stat, child_versions={'bob0': stat, 'bob1': stat}),
caching_file_system.py 75 file_version = dir_stat.child_versions.get(file_path)
test_file_system.py 98 stat_result.child_versions = dict(
patched_file_system_test.py 157 expected.child_versions.update({'file2.html': version,

Completed in 894 milliseconds