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

/external/chromium_org/content/test/data/indexeddb/
H A Dcursor_test.js15 request = objectStore.openCursor(keyRange);
37 function openCursor(objectStore) function
41 var request = objectStore.openCursor(keyRange);
49 openCursor(objectStore);
H A Dkey_path_test.js17 openCursor();
20 function openCursor() function
24 request = objectStore.openCursor(keyRange);
37 request.onsuccess = openCursor;
H A 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();
H A Dindex_test.js36 var request = index.openCursor(IDBKeyRange.only(55));
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBIndex.h63 IDBRequest* openCursor(ScriptState*, const ScriptValue& key, const String& direction, ExceptionState&);
73 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection);
H A DIDBIndex.idl45 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
H A DIDBIndex.cpp73 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) function in class:blink::IDBIndex
75 IDB_TRACE("IDBIndex::openCursor");
101 return openCursor(scriptState, keyRange, direction);
104 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, IDBKeyRange* keyRange, WebIDBCursorDirection direction) function in class:blink::IDBIndex
108 backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, direction, false, WebIDBTaskTypeNormal, WebIDBCallbacksImpl::create(request).leakPtr());
171 backendDB()->openCursor(m_transaction->id(), m_objectStore->id(), m_metadata.id, keyRange, direction, true, WebIDBTaskTypeNormal, WebIDBCallbacksImpl::create(request).leakPtr());
H A DIDBObjectStore.h70 IDBRequest* openCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&);
95 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection, WebIDBTaskType = WebIDBTaskTypeNormal);
H A DIDBObjectStore.idl50 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = "next");
H A DIDBObjectStore.cpp463 IDBRequest* indexRequest = openCursor(scriptState, static_cast<IDBKeyRange*>(0), WebIDBCursorDirectionNext, WebIDBTaskTypePreemptive);
549 IDBRequest* IDBObjectStore::openCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState) function in class:blink::IDBObjectStore
551 IDB_TRACE("IDBObjectStore::openCursor");
578 return openCursor(scriptState, keyRange, direction, WebIDBTaskTypeNormal);
581 IDBRequest* IDBObjectStore::openCursor(ScriptState* scriptState, IDBKeyRange* range, WebIDBCursorDirection direction, WebIDBTaskType taskType) function in class:blink::IDBObjectStore
586 backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, range, direction, false, taskType, WebIDBCallbacksImpl::create(request).leakPtr());
622 backendDB()->openCursor(m_transaction->id(), id(), IDBIndexMetadata::InvalidId, keyRange, direction, true, WebIDBTaskTypeNormal, WebIDBCallbacksImpl::create(request).leakPtr());
H A DInspectorIndexedDBAgent.cpp524 idbRequest = idbIndex->openCursor(scriptState(), m_idbKeyRange.get(), WebIDBCursorDirectionNext);
526 idbRequest = idbObjectStore->openCursor(scriptState(), m_idbKeyRange.get(), WebIDBCursorDirectionNext);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBDatabase.h70 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCursorDirection, bool keyOnly, WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebIDBDatabase
/external/chromium_org/content/child/indexed_db/
H A Dwebidbdatabase_impl.h70 virtual void openCursor(long long transactionId,
H A Dwebidbdatabase_impl.cc177 void WebIDBDatabaseImpl::openCursor(long long transaction_id, function in class:content::WebIDBDatabaseImpl
/external/chromium_org/tools/perf/page_sets/endure/
H A Dindexeddb_app_worker.js175 var cursorRequest = syncStore.openCursor();
H A Dindexeddb_app.js194 var cursorRequest = store.openCursor();
/external/chromium_org/ui/file_manager/image_loader/
H A Dcache.js198 metadataStore.openCursor().onsuccess = function(e) {

Completed in 298 milliseconds