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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBMetadata.h 56 struct IDBObjectStoreMetadata {
57 IDBObjectStoreMetadata() { }
58 IDBObjectStoreMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId)
85 typedef HashMap<int64_t, IDBObjectStoreMetadata> ObjectStoreMap;
IDBObjectStore.h 54 static IDBObjectStore* create(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
100 const IDBObjectStoreMetadata& metadata() const { return m_metadata; }
101 void setMetadata(const IDBObjectStoreMetadata& metadata) { m_metadata = metadata; }
108 IDBObjectStore(const IDBObjectStoreMetadata&, IDBTransaction*);
120 IDBObjectStoreMetadata m_metadata;
IDBTransaction.h 50 struct IDBObjectStoreMetadata;
144 typedef HeapHashMap<Member<IDBObjectStore>, IDBObjectStoreMetadata> IDBObjectStoreMetadataMap;
IDBDatabase.cpp 257 IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minimumIndexId);
284 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
325 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
434 ASSERT(it->key != IDBObjectStoreMetadata::InvalidId);
438 return IDBObjectStoreMetadata::InvalidId;
IDBDatabase.h 113 return findObjectStoreId(name) != IDBObjectStoreMetadata::InvalidId;
IDBObjectStore.cpp 58 IDBObjectStore::IDBObjectStore(const IDBObjectStoreMetadata& metadata, IDBTransaction* transaction)
82 for (IDBObjectStoreMetadata::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it)
228 for (IDBObjectStoreMetadata::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it) {
485 for (IDBObjectStoreMetadata::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it) {
656 for (IDBObjectStoreMetadata::IndexMap::const_iterator it = m_metadata.indexes.begin(); it != m_metadata.indexes.end(); ++it) {
IDBTransaction.cpp 154 if (objectStoreId == IDBObjectStoreMetadata::InvalidId) {
IDBCursor.cpp 329 const IDBObjectStoreMetadata& metadata = objectStore->metadata();
InspectorIndexedDBAgent.cpp 276 const IDBObjectStoreMetadata& objectStoreMetadata = it->value;
280 for (IDBObjectStoreMetadata::IndexMap::const_iterator it = objectStoreMetadata.indexes.begin(); it != objectStoreMetadata.indexes.end(); ++it) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBMetadata.cpp 48 const IDBObjectStoreMetadata& objectStore = storeIterator->value;
58 for (IDBObjectStoreMetadata::IndexMap::const_iterator indexIterator = objectStore.indexes.begin(); indexIterator != objectStore.indexes.end(); ++indexIterator) {
77 IDBObjectStoreMetadata objectStore(webObjectStore.name, webObjectStore.id, webObjectStore.keyPath, webObjectStore.autoIncrement, webObjectStore.maxIndexId);

Completed in 416 milliseconds