Home
last modified time | relevance | path

Searched refs:openCursor (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/content/test/data/indexeddb/
Dkey_path_test.js17 openCursor();
20 function openCursor() function
24 request = objectStore.openCursor(keyRange);
37 request.onsuccess = openCursor;
Dcursor_test.js15 request = objectStore.openCursor(keyRange);
37 function openCursor(objectStore) function
41 var request = objectStore.openCursor(keyRange);
49 openCursor(objectStore);
Dcursor_prefetch.js51 var cursorReq = store.openCursor();
84 var cursorReq = store.openCursor();
134 var cursorReq = store.openCursor(
173 var cursorReq = store.openCursor();
245 var cursorReq = store.openCursor(IDBKeyRange.lowerBound(startKey));
304 var req = store.openCursor();
338 var req = store.openCursor();
355 var cursorReq = index.openCursor();
Dindex_test.js36 var request = index.openCursor(IDBKeyRange.only(55));
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBIndex.cpp67 PassRefPtr<IDBRequest> IDBIndex::openCursor(ExecutionContext* context, const ScriptValue& range, co… in openCursor() function in WebCore::IDBIndex
90 return openCursor(context, keyRange.release(), direction); in openCursor()
93 PassRefPtr<IDBRequest> IDBIndex::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange> keyR… in openCursor() function in WebCore::IDBIndex
97 …backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, directi… in openCursor()
151 …backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange.release(… in openKeyCursor()
DIDBIndex.h60 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, const ScriptValue& key, const String& directi…
70 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, IndexedDB::CursorDir…
DIDBObjectStore.h67 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, const ScriptValue& range, const String& direc…
86 …PassRefPtr<IDBRequest> openCursor(ExecutionContext*, PassRefPtr<IDBKeyRange>, IndexedDB::CursorDir…
DIDBObjectStore.cpp429 …RefPtr<IDBRequest> indexRequest = openCursor(context, static_cast<IDBKeyRange*>(0), IndexedDB::Cur… in createIndex()
512 PassRefPtr<IDBRequest> IDBObjectStore::openCursor(ExecutionContext* context, const ScriptValue& ran… in openCursor() function in WebCore::IDBObjectStore
536 return openCursor(context, keyRange, direction, WebIDBDatabase::NormalTask); in openCursor()
539 PassRefPtr<IDBRequest> IDBObjectStore::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange… in openCursor() function in WebCore::IDBObjectStore
544 …backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, range, direction, … in openCursor()
575 …backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange.release()… in openKeyCursor()
DIDBIndex.idl34 …[CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional an…
DIDBObjectStore.idl39 …[CallWith=ExecutionContext, RaisesException] IDBRequest openCursor([Default=Undefined] optional an…
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBDatabase.h79 …virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const… in openCursor() function
/external/chromium_org/content/child/indexed_db/
Dwebidbdatabase_impl.h63 virtual void openCursor(long long transactionId,
Dwebidbdatabase_impl.cc165 void WebIDBDatabaseImpl::openCursor(long long transaction_id, in openCursor() function in content::WebIDBDatabaseImpl
/external/chromium_org/tools/perf/page_sets/endure/
Dindexeddb_app_worker.js175 var cursorRequest = syncStore.openCursor();
Dindexeddb_app.js207 var cursorRequest = store.openCursor();
/external/chromium_org/chrome/browser/resources/image_loader/
Dcache.js198 metadataStore.openCursor().onsuccess = function(e) {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorIndexedDBAgent.cpp509 …idbRequest = idbIndex->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), IndexedDB::Cu… in execute()
511 …idbRequest = idbObjectStore->openCursor(context(), PassRefPtr<IDBKeyRange>(m_idbKeyRange), Indexed… in execute()