HomeSort by relevance Sort by last modified time
    Searched defs:continueFunction (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBCursor.h 51 virtual void continueFunction(const WebIDBKey&, const WebIDBKey& primaryKey, WebIDBCallbacks*) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/content/child/indexed_db/
webidbcursor_impl.cc 61 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key,
63 continueFunction(key, WebIDBKey::createNull(), callbacks_ptr);
66 void WebIDBCursorImpl::continueFunction(const WebIDBKey& key,
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBCursor.cpp 185 void IDBCursor::continueFunction(ScriptState* scriptState, const ScriptValue& keyValue, ExceptionState& exceptionState)
193 continueFunction(key, 0, exceptionState);
205 continueFunction(key, primaryKey, exceptionState);
208 void IDBCursor::continueFunction(IDBKey* key, IDBKey* primaryKey, ExceptionState& exceptionState)
255 m_backend->continueFunction(key, primaryKey, WebIDBCallbacksImpl::create(m_request).leakPtr());

Completed in 177 milliseconds