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

  /external/webkit/Source/WebCore/storage/
IDBIndex.h 40 class IDBObjectStore;
44 static PassRefPtr<IDBIndex> create(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction)
52 IDBObjectStore* objectStore() const { return m_objectStore.get(); }
69 IDBIndex(PassRefPtr<IDBIndexBackendInterface>, IDBObjectStore*, IDBTransaction*);
72 RefPtr<IDBObjectStore> m_objectStore;
IDBObjectStore.cpp 27 #include "IDBObjectStore.h"
45 IDBObjectStore::IDBObjectStore(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore, IDBTransaction* transaction)
46 : m_objectStore(idbObjectStore)
55 String IDBObjectStore::name() const
60 String IDBObjectStore::keyPath() const
65 PassRefPtr<DOMStringList> IDBObjectStore::indexNames() const
70 PassRefPtr<IDBRequest> IDBObjectStore::get(ScriptExecutionContext* context, PassRefPtr<IDBKey> key, ExceptionCode& ec)
81 PassRefPtr<IDBRequest> IDBObjectStore::add(ScriptExecutionContext* context, PassRefPtr<SerializedScriptValue> value, PassRefPtr<IDBKey> (…)
    [all...]
IDBObjectStore.h 49 class IDBObjectStore : public RefCounted<IDBObjectStore> {
51 static PassRefPtr<IDBObjectStore> create(PassRefPtr<IDBObjectStoreBackendInterface> idbObjectStore, IDBTransaction* transaction)
53 return adoptRef(new IDBObjectStore(idbObjectStore, transaction));
55 ~IDBObjectStore() { }
81 IDBObjectStore(PassRefPtr<IDBObjectStoreBackendInterface>, IDBTransaction*);
IDBAny.h 43 class IDBObjectStore;
89 PassRefPtr<IDBObjectStore> idbObjectStore();
101 void set(PassRefPtr<IDBObjectStore>);
117 RefPtr<IDBObjectStore> m_idbObjectStore;
IDBTransaction.h 44 class IDBObjectStore;
62 PassRefPtr<IDBObjectStore> objectStore(const String& name, ExceptionCode&);
IDBIndex.idl 32 readonly attribute IDBObjectStore objectStore;
IDBTransaction.cpp 38 #include "IDBObjectStore.h"
84 PassRefPtr<IDBObjectStore> IDBTransaction::objectStore(const String& name, ExceptionCode& ec)
95 RefPtr<IDBObjectStore> objectStore = IDBObjectStore::create(objectStoreBackend, this);
IDBAny.cpp 35 #include "IDBObjectStore.h"
98 PassRefPtr<IDBObjectStore> IDBAny::idbObjectStore()
171 void IDBAny::set(PassRefPtr<IDBObjectStore> value)
IDBDatabase.h 36 #include "IDBObjectStore.h"
63 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, ExceptionCode& ec) { return createObjectStore(name, OptionsObject(), ec); }
68 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const OptionsObject&, ExceptionCode&);
IDBDatabase.idl 40 IDBObjectStore createObjectStore(in DOMString name, in [Optional] OptionsObject options)
IDBObjectStore.idl 30 ] IDBObjectStore {
IDBDatabase.cpp 38 #include "IDBObjectStore.h"
75 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const OptionsObject& options, ExceptionCode& ec)
93 return IDBObjectStore::create(objectStore.release(), m_setVersionTransaction.get());
IDBIndex.cpp 36 #include "IDBObjectStore.h"
44 IDBIndex::IDBIndex(PassRefPtr<IDBIndexBackendInterface> backend, IDBObjectStore* objectStore, IDBTransaction* transaction)
  /external/webkit/Source/WebCore/
Android.mk     [all...]

Completed in 1914 milliseconds