Searched refs:object_store (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | cache_chain_object_store.py | 6 from object_store import ObjectStore 32 for object_store in self._object_stores: 33 object_store.SetMulti(mapping) 44 object_store_futures = [(object_store, object_store.GetMulti(missing_keys)) 45 for object_store in self._object_stores] 56 for object_store, object_store_future in object_store_futures: 69 object_store_updates.append((object_store, {})) 71 for object_store, updates in object_store_updates: 73 object_store.SetMulti(updates) 80 for object_store in self._object_stores: [all …]
|
D | persistent_object_store_test.py | 16 object_store = PersistentObjectStore('test') 17 object_store.Set('key', 'value') 18 self.assertEqual('value', object_store.Get('key').Get()) 25 self.assertEqual(mapping, object_store.GetMulti(mapping.keys()).Get()) 29 object_store.DelMulti(mapping.keys()) 30 self.assertEqual({}, object_store.GetMulti(mapping.keys()).Get()) 34 object_store = PersistentObjectStore('test') 36 object_store.Set('key', 'value')
|
D | branch_utility.py | 150 object_store = self._branch_object_store 152 object_store = self._version_object_store 154 data = object_store.Get(channel_name).Get() 186 object_store.Set(channel_name, sorted_numbers[0][0])
|
D | chained_compiled_file_system.py | 29 def __init__(self, file_system_chain, object_store): argument 31 self._object_store = object_store
|
D | caching_rietveld_patcher.py | 32 object_store): argument 38 self._object_store = object_store
|
D | reference_resolver.py | 52 def __init__(self, api_models, object_store): argument 54 self._object_store = object_store
|
D | memcache_object_store.py | 8 from object_store import ObjectStore
|
D | persistent_object_store.py | 9 from object_store import ObjectStore
|
D | test_object_store.py | 6 from object_store import ObjectStore
|
/external/chromium_org/content/browser/indexed_db/ |
D | indexed_db_index_writer.cc | 125 const IndexedDBObjectStoreMetadata& object_store, in MakeIndexWriters() argument 139 object_store.indexes.find(it->first); in MakeIndexWriters() 140 if (found == object_store.indexes.end()) in MakeIndexWriters() 147 if (key_was_generated && (index.key_path == object_store.key_path)) in MakeIndexWriters() 156 object_store.id, in MakeIndexWriters()
|
D | indexed_db_database.cc | 130 const IndexedDBObjectStoreMetadata& object_store, in AddObjectStore() argument 132 DCHECK(metadata_.object_stores.find(object_store.id) == in AddObjectStore() 138 metadata_.object_stores[object_store.id] = object_store; in AddObjectStore() 152 IndexedDBObjectStoreMetadata object_store = in AddIndex() local 155 DCHECK(object_store.indexes.find(index.id) == object_store.indexes.end()); in AddIndex() 156 object_store.indexes[index.id] = index; in AddIndex() 158 DCHECK_LT(object_store.max_index_id, new_max_index_id); in AddIndex() 159 object_store.max_index_id = new_max_index_id; in AddIndex() 161 metadata_.object_stores[object_store_id] = object_store; in AddIndex() 167 IndexedDBObjectStoreMetadata object_store = in RemoveIndex() local [all …]
|
D | indexed_db_backing_store_unittest.cc | 961 IndexedDBObjectStoreMetadata object_store = in TEST_F() local 963 EXPECT_EQ(object_store_name, object_store.name); in TEST_F() 964 EXPECT_EQ(object_store_key_path, object_store.key_path); in TEST_F() 965 EXPECT_EQ(auto_increment, object_store.auto_increment); in TEST_F() 967 EXPECT_EQ(1UL, object_store.indexes.size()); in TEST_F() 968 IndexedDBIndexMetadata index = object_store.indexes[index_id]; in TEST_F()
|