Searched defs:IDBIndex (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBIndex.cpp27 #include "modules/indexeddb/IDBIndex.h"
45 IDBIndex::IDBIndex(const IDBIndexMetadata& metadata, IDBObjectStore* objectStore, IDBTransaction* transaction) function in class:WebCore::IDBIndex
57 IDBIndex::~IDBIndex()
61 ScriptValue IDBIndex::keyPath(ExecutionContext* context) const
67 PassRefPtr<IDBRequest> IDBIndex::openCursor(ExecutionContext* context, const ScriptValue& range, const String& directionString, ExceptionState& exceptionState)
69 IDB_TRACE("IDBIndex::openCursor");
93 PassRefPtr<IDBRequest> IDBIndex::openCursor(ExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, IndexedDB::CursorDirection direction)
101 PassRefPtr<IDBRequest> IDBIndex
[all...]
H A DIDBIndex.h45 class IDBIndex : public ScriptWrappable, public RefCounted<IDBIndex> { class in namespace:WebCore
47 static PassRefPtr<IDBIndex> create(const IDBIndexMetadata& metadata, IDBObjectStore* objectStore, IDBTransaction* transaction)
49 return adoptRef(new IDBIndex(metadata, objectStore, transaction));
51 ~IDBIndex();
75 IDBIndex(const IDBIndexMetadata&, IDBObjectStore*, IDBTransaction*);

Completed in 101 milliseconds