IDBIndexMetadata 102 Source/modules/indexeddb/IDBDatabase.cpp void IDBDatabase::indexCreated(int64_t objectStoreId, const IDBIndexMetadata& metadata) IDBIndexMetadata 62 Source/modules/indexeddb/IDBDatabase.h void indexCreated(int64_t objectStoreId, const IDBIndexMetadata&); IDBIndexMetadata 47 Source/modules/indexeddb/IDBIndex.cpp IDBIndex::IDBIndex(const IDBIndexMetadata& metadata, IDBObjectStore* objectStore, IDBTransaction* transaction) IDBIndexMetadata 55 Source/modules/indexeddb/IDBIndex.cpp ASSERT(m_metadata.id != IDBIndexMetadata::InvalidId); IDBIndexMetadata 47 Source/modules/indexeddb/IDBIndex.h static PassRefPtr<IDBIndex> create(const IDBIndexMetadata& metadata, IDBObjectStore* objectStore, IDBTransaction* transaction) IDBIndexMetadata 75 Source/modules/indexeddb/IDBIndex.h IDBIndex(const IDBIndexMetadata&, IDBObjectStore*, IDBTransaction*); IDBIndexMetadata 79 Source/modules/indexeddb/IDBIndex.h IDBIndexMetadata m_metadata; IDBIndexMetadata 40 Source/modules/indexeddb/IDBMetadata.h IDBIndexMetadata() { } IDBIndexMetadata 41 Source/modules/indexeddb/IDBMetadata.h IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry) IDBIndexMetadata 74 Source/modules/indexeddb/IDBMetadata.h typedef HashMap<int64_t, IDBIndexMetadata> IndexMap; IDBIndexMetadata 104 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->get(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), false, WebIDBCallbacksImpl::create(request).leakPtr()); IDBIndexMetadata 108 Source/modules/indexeddb/IDBObjectStore.cpp static void generateIndexKeysForValue(DOMRequestState* requestState, const IDBIndexMetadata& indexMetadata, const ScriptValue& objectValue, IDBObjectStore::IndexKeys* indexKeys) IDBIndexMetadata 303 Source/modules/indexeddb/IDBObjectStore.cpp static PassRefPtr<IndexPopulator> create(PassRefPtr<IDBDatabase> database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata) IDBIndexMetadata 314 Source/modules/indexeddb/IDBObjectStore.cpp IndexPopulator(PassRefPtr<IDBDatabase> database, int64_t transactionId, int64_t objectStoreId, const IDBIndexMetadata& indexMetadata) IDBIndexMetadata 361 Source/modules/indexeddb/IDBObjectStore.cpp const IDBIndexMetadata m_indexMetadata; IDBIndexMetadata 418 Source/modules/indexeddb/IDBObjectStore.cpp IDBIndexMetadata metadata(name, indexId, keyPath, unique, multiEntry); IDBIndexMetadata 455 Source/modules/indexeddb/IDBObjectStore.cpp if (indexId == IDBIndexMetadata::InvalidId) { IDBIndexMetadata 460 Source/modules/indexeddb/IDBObjectStore.cpp const IDBIndexMetadata* indexMetadata(0); IDBIndexMetadata 468 Source/modules/indexeddb/IDBObjectStore.cpp ASSERT(indexMetadata->id != IDBIndexMetadata::InvalidId); IDBIndexMetadata 495 Source/modules/indexeddb/IDBObjectStore.cpp if (indexId == IDBIndexMetadata::InvalidId) { IDBIndexMetadata 543 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, range, direction, false, taskType, WebIDBCallbacksImpl::create(request).leakPtr()); IDBIndexMetadata 574 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), direction, true, WebIDBDatabase::NormalTask, WebIDBCallbacksImpl::create(request).leakPtr()); IDBIndexMetadata 599 Source/modules/indexeddb/IDBObjectStore.cpp backendDB()->count(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release(), WebIDBCallbacksImpl::create(request).leakPtr()); IDBIndexMetadata 615 Source/modules/indexeddb/IDBObjectStore.cpp ASSERT(it->key != IDBIndexMetadata::InvalidId); IDBIndexMetadata 619 Source/modules/indexeddb/IDBObjectStore.cpp return IDBIndexMetadata::InvalidId; IDBIndexMetadata 111 Source/modules/indexeddb/IDBObjectStore.h return findIndexId(name) != IDBIndexMetadata::InvalidId; IDBIndexMetadata 281 Source/modules/indexeddb/InspectorIndexedDBAgent.cpp const IDBIndexMetadata& indexMetadata = it->value; IDBIndexMetadata 59 Source/web/WebIDBMetadata.cpp const IDBIndexMetadata& index = indexIterator->value; IDBIndexMetadata 81 Source/web/WebIDBMetadata.cpp IDBIndexMetadata index(webIndex.name, webIndex.id, webIndex.keyPath, webIndex.unique, webIndex.multiEntry);