HomeSort by relevance Sort by last modified time
    Searched full:object_store (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chrome/common/extensions/docs/server2/
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')
cache_chain_object_store.py 6 from object_store import ObjectStore
38 for object_store, object_store_future in self._object_store_futures:
51 object_store_updates.append((object_store, {}))
53 for object_store, updates in object_store_updates:
55 object_store.SetMulti(updates)
81 for object_store in self._object_stores:
82 object_store.SetMulti(mapping)
93 object_store_futures = [(object_store, object_store.GetMulti(missing_keys))
94 for object_store in self._object_stores
    [all...]
persistent_object_store.py 9 from object_store import ObjectStore
12 def __init__(self, object_store, keys):
15 PersistentObjectStoreItem.CreateKey(object_store._namespace, k)))
test_object_store.py 6 from object_store import ObjectStore
50 self.assertTrue(*object_store.CheckAndReset(...))
memcache_object_store.py 8 from object_store import ObjectStore
caching_rietveld_patcher.py 32 object_store):
38 self._object_store = object_store
chained_compiled_file_system.py 27 def __init__(self, file_system_chain, object_store):
29 self._object_store = object_store
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])
caching_file_system.py 18 object_store):
23 self._object_store = object_store
mock_file_system.py 108 self.assertTrue(*object_store.CheckAndReset(...))
reference_resolver.py 78 def __init__(self, api_data_source, api_models, object_store):
81 self._object_store = object_store
  /external/chromium_org/content/browser/indexed_db/
indexed_db_index_writer.cc 120 const IndexedDBObjectStoreMetadata& object_store,
136 object_store.indexes.begin();
137 it != object_store.indexes.end();
142 // If the object_store is using auto_increment, then any indexes with an
144 if (key_was_generated && (index.key_path == object_store.key_path))
153 object_store.id,
indexed_db_backing_store_unittest.cc 304 IndexedDBObjectStoreMetadata object_store = local
306 EXPECT_EQ(object_store_name, object_store.name);
307 EXPECT_EQ(object_store_key_path, object_store.key_path);
308 EXPECT_EQ(auto_increment, object_store.auto_increment);
310 EXPECT_EQ(1UL, object_store.indexes.size());
311 IndexedDBIndexMetadata index = object_store.indexes[index_id];
indexed_db_database.cc 148 const IndexedDBObjectStoreMetadata& object_store,
150 DCHECK(metadata_.object_stores.find(object_store.id) ==
156 metadata_.object_stores[object_store.id] = object_store;
170 IndexedDBObjectStoreMetadata object_store = local
173 DCHECK(object_store.indexes.find(index.id) == object_store.indexes.end());
174 object_store.indexes[index.id] = index;
176 DCHECK_LT(object_store.max_index_id, new_max_index_id);
177 object_store.max_index_id = new_max_index_id
185 IndexedDBObjectStoreMetadata object_store = local
748 const IndexedDBObjectStoreMetadata& object_store = local
    [all...]

Completed in 83 milliseconds