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 33 #include "modules/indexeddb/IDBIndex.h"
97 PassRefPtr<IDBIndex> IDBAny::idbIndex()
161 IDBAny::IDBAny(PassRefPtr<IDBIndex> value)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorIndexedDBAgent.cpp 51 #include "modules/indexeddb/IDBIndex.h"
228 static PassRefPtr<IDBIndex> indexForObjectStore(IDBObjectStore* idbObjectStore, const String& indexName)
231 RefPtr<IDBIndex> idbIndex = idbObjectStore->index(indexName, es);
234 return idbIndex;
517 RefPtr<IDBIndex> idbIndex = indexForObjectStore(idbObjectStore.get(), m_indexName);
518 if (!idbIndex) {
523 idbRequest = idbIndex->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IDBCursor::directionNext(), IGNORE_EXCEPTION);

Completed in 166 milliseconds