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

  /external/webkit/LayoutTests/storage/indexeddb/resources/
shared.js 48 while (db.objectStoreNames.length)
49 db.deleteObjectStore(db.objectStoreNames.item(0));
  /external/webkit/Source/WebCore/storage/
IDBDatabaseBackendImpl.cpp 92 PassRefPtr<DOMStringList> IDBDatabaseBackendImpl::objectStoreNames() const
94 RefPtr<DOMStringList> objectStoreNames = DOMStringList::create();
96 objectStoreNames->append(it->first);
97 return objectStoreNames.release();
184 RefPtr<DOMStringList> objectStoreNames = DOMStringList::create();
186 RefPtr<IDBTransactionBackendInterface> transaction = IDBTransactionBackendImpl::create(objectStoreNames.get(), IDBTransaction::VERSION_CHANGE, this);
206 PassRefPtr<IDBTransactionBackendInterface> IDBDatabaseBackendImpl::transaction(DOMStringList* objectStoreNames, unsigned short mode, ExceptionCode& ec)
208 for (size_t i = 0; i < objectStoreNames->length(); ++i) {
209 if (!m_objectStores.contains(objectStoreNames->item(i))) {
216 return IDBTransactionBackendImpl::create(objectStoreNames, mode, this)
    [all...]
IDBDatabaseBackendInterface.h 55 virtual PassRefPtr<DOMStringList> objectStoreNames() const = 0;
IDBDatabase.h 60 PassRefPtr<DOMStringList> objectStoreNames() const { return m_backend->objectStoreNames(); }
IDBDatabase.idl 34 readonly attribute DOMStringList objectStoreNames;
IDBDatabaseBackendImpl.h 61 virtual PassRefPtr<DOMStringList> objectStoreNames() const;
66 virtual PassRefPtr<IDBTransactionBackendInterface> transaction(DOMStringList* objectStoreNames, unsigned short mode, ExceptionCode&);
  /external/webkit/Source/WebKit/chromium/public/
WebIDBDatabase.h 56 virtual WebDOMStringList objectStoreNames() const
  /external/webkit/Source/WebKit/chromium/src/
WebIDBDatabaseImpl.h 54 virtual WebDOMStringList objectStoreNames() const;
IDBDatabaseBackendProxy.cpp 73 PassRefPtr<DOMStringList> IDBDatabaseBackendProxy::objectStoreNames() const
75 return m_webIDBDatabase->objectStoreNames();
WebIDBDatabaseImpl.cpp 64 WebDOMStringList WebIDBDatabaseImpl::objectStoreNames() const
66 return m_databaseBackend->objectStoreNames();
IDBDatabaseBackendProxy.h 47 virtual PassRefPtr<WebCore::DOMStringList> objectStoreNames() const;

Completed in 176 milliseconds