HomeSort by relevance Sort by last modified time
    Searched defs:idbIndex (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBAny.cpp 32 #include "modules/indexeddb/IDBIndex.h"
89 IDBIndex* IDBAny::idbIndex() const
158 IDBAny::IDBAny(PassRefPtr<IDBIndex> value)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 50 #include "modules/indexeddb/IDBIndex.h"
218 static PassRefPtr<IDBIndex> indexForObjectStore(IDBObjectStore* idbObjectStore, const String& indexName)
221 RefPtr<IDBIndex> idbIndex = idbObjectStore->index(indexName, exceptionState);
224 return idbIndex;
503 RefPtr<IDBIndex> idbIndex = indexForObjectStore(idbObjectStore.get(), m_indexName);
504 if (!idbIndex) {
509 idbRequest = idbIndex->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IndexedDB::CursorNext);

Completed in 147 milliseconds