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

  /external/webkit/Source/WebCore/storage/
IDBDatabaseBackendInterface.h 58 virtual void deleteObjectStore(const String& name, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
IDBDatabase.idl 42 void deleteObjectStore(in DOMString name)
IDBDatabase.cpp 96 void IDBDatabase::deleteObjectStore(const String& name, ExceptionCode& ec)
103 m_backend->deleteObjectStore(name, m_setVersionTransaction->backend(), ec);
IDBDatabase.h 69 void deleteObjectStore(const String& name, ExceptionCode&);
IDBDatabaseBackendImpl.h 64 virtual void deleteObjectStore(const String& name, IDBTransactionBackendInterface*, ExceptionCode&);
IDBBackingStore.h 54 virtual void deleteObjectStore(int64_t databaseId, int64_t objectStoreId) = 0;
IDBLevelDBBackingStore.h 50 virtual void deleteObjectStore(int64_t databaseId, int64_t objectStoreId);
IDBSQLiteBackingStore.h 45 virtual void deleteObjectStore(int64_t databaseId, int64_t objectStoreId);
IDBDatabaseBackendImpl.cpp 142 void IDBDatabaseBackendImpl::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transactionPtr, ExceptionCode& ec)
161 database->m_backingStore->deleteObjectStore(database->id(), objectStore->id());
IDBSQLiteBackingStore.cpp 294 void IDBSQLiteBackingStore::deleteObjectStore(int64_t, int64_t objectStoreId)
    [all...]
IDBLevelDBBackingStore.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebIDBDatabase.h 66 virtual void deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/webkit/Source/WebKit/chromium/src/
WebIDBDatabaseImpl.h 57 virtual void deleteObjectStore(const WebString& name, const WebIDBTransaction&, WebExceptionCode&);
IDBDatabaseBackendProxy.cpp 89 void IDBDatabaseBackendProxy::deleteObjectStore(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
94 m_webIDBDatabase->deleteObjectStore(name, *transactionProxy->getWebIDBTransaction(), ec);
WebIDBDatabaseImpl.cpp 79 void WebIDBDatabaseImpl::deleteObjectStore(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec)
81 m_databaseBackend->deleteObjectStore(name, transaction.getIDBTransactionBackendInterface(), ec);
IDBDatabaseBackendProxy.h 50 virtual void deleteObjectStore(const String& name, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&);
  /external/webkit/LayoutTests/storage/indexeddb/resources/
shared.js 49 db.deleteObjectStore(db.objectStoreNames.item(0));

Completed in 114 milliseconds