HomeSort by relevance Sort by last modified time
    Searched refs:openCursor (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/content/test/data/indexeddb/
cursor_test.js 15 request = objectStore.openCursor(keyRange);
37 function openCursor(objectStore)
41 var request = objectStore.openCursor(keyRange);
49 openCursor(objectStore);
key_path_test.js 17 openCursor();
20 function openCursor()
24 request = objectStore.openCursor(keyRange);
37 request.onsuccess = openCursor;
cursor_prefetch.js 51 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();
index_test.js 36 var request = index.openCursor(IDBKeyRange.only(55));
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
CursorPhotoSource.java 43 openCursor(current);
60 openCursor(current);
81 protected abstract void openCursor(ImageData data);
LocalSource.java 126 protected void openCursor(ImageData data) {
140 openCursor(data);
PicasaSource.java 104 protected void openCursor(ImageData data) {
122 openCursor(data);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.h 63 IDBRequest* openCursor(ScriptState*, const ScriptValue& key, const String& direction, ExceptionState&);
73 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection);
IDBIndex.idl 45 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional IDBCursorDirection direction = "next");
IDBIndex.cpp 73 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState)
75 IDB_TRACE("IDBIndex::openCursor");
101 return openCursor(scriptState, keyRange, direction);
104 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, IDBKeyRange* keyRange, WebIDBCursorDirection direction)
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());
IDBObjectStore.h 70 IDBRequest* openCursor(ScriptState*, const ScriptValue& range, const String& direction, ExceptionState&);
95 IDBRequest* openCursor(ScriptState*, IDBKeyRange*, WebIDBCursorDirection, WebIDBTaskType = WebIDBTaskTypeNormal);
IDBObjectStore.idl 50 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undefined] optional any range, optional DOMString direction = "next");
IDBObjectStore.cpp 463 IDBRequest* indexRequest = openCursor(scriptState, static_cast<IDBKeyRange*>(0), WebIDBCursorDirectionNext, WebIDBTaskTypePreemptive);
549 IDBRequest* IDBObjectStore::openCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState)
551 IDB_TRACE("IDBObjectStore::openCursor");
578 return openCursor(scriptState, keyRange, direction, WebIDBTaskTypeNormal);
581 IDBRequest* IDBObjectStore::openCursor(ScriptState* scriptState, IDBKeyRange* range, WebIDBCursorDirection direction, WebIDBTaskType taskType)
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());
InspectorIndexedDBAgent.cpp 524 idbRequest = idbIndex->openCursor(scriptState(), m_idbKeyRange.get(), WebIDBCursorDirectionNext);
526 idbRequest = idbObjectStore->openCursor(scriptState(), m_idbKeyRange.get(), WebIDBCursorDirectionNext);
  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.h 70 virtual void openCursor(long long transactionId,
webidbdatabase_impl.cc 177 void WebIDBDatabaseImpl::openCursor(long long transaction_id,
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBDatabase.h 70 virtual void openCursor(long long transactionId, long long objectStoreId, long long indexId, const WebIDBKeyRange&, WebIDBCursorDirection, bool keyOnly, WebIDBTaskType, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app_worker.js 175 var cursorRequest = syncStore.openCursor();
indexeddb_app.js 194 var cursorRequest = store.openCursor();
  /external/chromium_org/ui/file_manager/image_loader/
cache.js 198 metadataStore.openCursor().onsuccess = function(e) {

Completed in 1233 milliseconds