Home | History | Annotate | Download | only in indexeddb

Lines Matching defs:IDBIndex

27 #include "modules/indexeddb/IDBIndex.h"
47 IDBIndex::IDBIndex(const IDBIndexMetadata& metadata, IDBObjectStore* objectStore, IDBTransaction* transaction)
59 IDBIndex::~IDBIndex()
63 void IDBIndex::trace(Visitor* visitor)
69 ScriptValue IDBIndex::keyPath(ScriptState* scriptState) const
74 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState)
76 IDB_TRACE("IDBIndex::openCursor");
105 IDBRequest* IDBIndex::openCursor(ScriptState* scriptState, IDBKeyRange* keyRange, blink::WebIDBCursorDirection direction)
113 IDBRequest* IDBIndex::count(ScriptState* scriptState, const ScriptValue& range, ExceptionState& exceptionState)
115 IDB_TRACE("IDBIndex::count");
143 IDBRequest* IDBIndex::openKeyCursor(ScriptState* scriptState, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState)
145 IDB_TRACE("IDBIndex::openKeyCursor");
176 IDBRequest* IDBIndex::get(ScriptState* scriptState, const ScriptValue& key, ExceptionState& exceptionState)
178 IDB_TRACE("IDBIndex::get");
182 IDBRequest* IDBIndex::getKey(ScriptState* scriptState, const ScriptValue& key, ExceptionState& exceptionState)
184 IDB_TRACE("IDBIndex::getKey");
188 IDBRequest* IDBIndex::getInternal(ScriptState* scriptState, const ScriptValue& key, ExceptionState& exceptionState, bool keyOnly)
220 WebIDBDatabase* IDBIndex::backendDB() const
225 bool IDBIndex::isDeleted() const