Searched defs:openCursor (Results 1 - 7 of 7) 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;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
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.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());
/external/chromium_org/content/child/indexed_db/
H A Dwebidbdatabase_impl.cc177 void WebIDBDatabaseImpl::openCursor(long long transaction_id, function in class:content::WebIDBDatabaseImpl
/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/ui/file_manager/image_loader/
H A Dcache.js198 metadataStore.openCursor().onsuccess = function(e) {

Completed in 181 milliseconds