Searched refs:objectStoreNames (Results 1 - 11 of 11) sorted by relevance

/external/webkit/LayoutTests/storage/indexeddb/resources/
H A Dshared.js48 while (db.objectStoreNames.length)
49 db.deleteObjectStore(db.objectStoreNames.item(0));
/external/webkit/Source/WebCore/storage/
H A DIDBDatabaseBackendImpl.cpp92 PassRefPtr<DOMStringList> IDBDatabaseBackendImpl::objectStoreNames() const function in class:WebCore::IDBDatabaseBackendImpl
94 RefPtr<DOMStringList> objectStoreNames = DOMStringList::create(); local
96 objectStoreNames->append(it->first);
97 return objectStoreNames.release();
184 RefPtr<DOMStringList> objectStoreNames = DOMStringList::create(); local
186 RefPtr<IDBTransactionBackendInterface> transaction = IDBTransactionBackendImpl::create(objectStoreNames.get(), IDBTransaction::VERSION_CHANGE, this);
206 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseBackendImpl::transaction(DOMStringList* objectStoreNames, unsigned short mode, ExceptionCode& ec) argument
208 for (size_t i = 0; i < objectStoreNames->length(); ++i) {
209 if (!m_objectStores.contains(objectStoreNames->item(i))) {
216 return IDBTransactionBackendImpl::create(objectStoreNames, mod
[all...]
H A DIDBDatabase.h60 PassRefPtr<DOMStringList> objectStoreNames() const { return m_backend->objectStoreNames(); } function in class:WebCore::IDBDatabase
H A DIDBDatabase.idl34 readonly attribute DOMStringList objectStoreNames;
H A DIDBDatabaseBackendImpl.h61 virtual PassRefPtr<DOMStringList> objectStoreNames() const;
66 virtual PassRefPtr<IDBTransactionBackendInterface> transaction(DOMStringList* objectStoreNames, unsigned short mode, ExceptionCode&);
H A DIDBDatabaseBackendInterface.h55 virtual PassRefPtr<DOMStringList> objectStoreNames() const = 0;
/external/webkit/Source/WebKit/chromium/src/
H A DIDBDatabaseBackendProxy.cpp73 PassRefPtr<DOMStringList> IDBDatabaseBackendProxy::objectStoreNames() const function in class:WebKit::IDBDatabaseBackendProxy
75 return m_webIDBDatabase->objectStoreNames();
H A DWebIDBDatabaseImpl.cpp64 WebDOMStringList WebIDBDatabaseImpl::objectStoreNames() const function in class:WebKit::WebIDBDatabaseImpl
66 return m_databaseBackend->objectStoreNames();
H A DIDBDatabaseBackendProxy.h47 virtual PassRefPtr<WebCore::DOMStringList> objectStoreNames() const;
H A DWebIDBDatabaseImpl.h54 virtual WebDOMStringList objectStoreNames() const;
/external/webkit/Source/WebKit/chromium/public/
H A DWebIDBDatabase.h56 virtual WebDOMStringList objectStoreNames() const function in class:WebKit::WebIDBDatabase

Completed in 141 milliseconds