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

  /external/webkit/Source/WebCore/storage/
IDBIndex.h 42 class IDBIndex : public RefCounted<IDBIndex> {
44 static PassRefPtr<IDBIndex> create(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction)
46 return adoptRef(new IDBIndex(backend, objectStore, transaction));
48 ~IDBIndex();
69 IDBIndex(PassRefPtr<IDBIndexBackendInterface>, IDBObjectStore*, IDBTransaction*);
IDBIndex.cpp 27 #include "IDBIndex.h"
44 IDBIndex::IDBIndex(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction)
54 IDBIndex::~IDBIndex()
58 PassRefPtr<IDBRequest> IDBIndex::openCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, ExceptionCode& ec)
76 PassRefPtr<IDBRequest> IDBIndex::openKeyCursor(ScriptExecutionContext* context, PassRefPtr<IDBKeyRange> keyRange, unsigned short direction, ExceptionCode& ec)
94 PassRefPtr<IDBRequest> IDBIndex::get(ScriptExecutionContext* context, PassRefPtr<IDBKey> key, ExceptionCode& ec)
105 PassRefPtr<IDBRequest> IDBIndex::getKey(ScriptExecutionContext* context, PassRefPtr<IDBKey> key, ExceptionCode& ec)
IDBAny.h 41 class IDBIndex;
87 PassRefPtr<IDBIndex> idbIndex();
99 void set(PassRefPtr<IDBIndex>);
115 RefPtr<IDBIndex> m_idbIndex;
IDBObjectStore.idl 47 IDBIndex createIndex(in DOMString name, in [ConvertNullToNullString] DOMString keyPath, in [Optional] OptionsObject options)
49 IDBIndex index(in DOMString name)
IDBObjectStore.h 30 #include "IDBIndex.h"
64 PassRefPtr<IDBIndex> createIndex(const String& name, const String& keyPath, ExceptionCode& ec) { return createIndex(name, keyPath, OptionsObject(), ec); }
74 PassRefPtr<IDBIndex> createIndex(const String& name, const String& keyPath, const OptionsObject&, ExceptionCode&);
75 PassRefPtr<IDBIndex> index(const String& name, ExceptionCode&);
IDBIndex.idl 30 ] IDBIndex {
IDBAny.cpp 34 #include "IDBIndex.h"
86 PassRefPtr<IDBIndex> IDBAny::idbIndex()
150 void IDBAny::set(PassRefPtr<IDBIndex> value)
IDBObjectStore.cpp 34 #include "IDBIndex.h"
125 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(const String& name, const String& keyPath, const OptionsObject& options, ExceptionCode& ec)
134 return IDBIndex::create(index.release(), this, m_transaction.get());
137 PassRefPtr<IDBIndex> IDBObjectStore::index(const String& name, ExceptionCode& ec)
143 return IDBIndex::create(index.release(), this, m_transaction.get());
  /external/webkit/Source/WebCore/
Android.mk     [all...]

Completed in 625 milliseconds