Home | History | Annotate | Download | only in web

Lines Matching defs:objectStore

43     objectStores = WebVector<ObjectStore>(static_cast<size_t>(metadata.objectStores.size()));
48 const IDBObjectStoreMetadata& objectStore = storeIterator->value;
49 ObjectStore webObjectStore;
50 webObjectStore.id = objectStore.id;
51 webObjectStore.name = objectStore.name;
52 webObjectStore.keyPath = objectStore.keyPath;
53 webObjectStore.autoIncrement = objectStore.autoIncrement;
54 webObjectStore.indexes = WebVector<Index>(static_cast<size_t>(objectStore.indexes.size()));
55 webObjectStore.maxIndexId = objectStore.maxIndexId;
58 for (IDBObjectStoreMetadata::IndexMap::const_iterator indexIterator = objectStore.indexes.begin(); indexIterator != objectStore.indexes.end(); ++indexIterator) {
76 const ObjectStore webObjectStore = objectStores[i];
77 IDBObjectStoreMetadata objectStore(webObjectStore.name, webObjectStore.id, webObjectStore.keyPath, webObjectStore.autoIncrement, webObjectStore.maxIndexId);
82 objectStore.indexes.set(index.id, index);
84 db.objectStores.set(objectStore.id, objectStore);