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

  /external/webkit/Source/WebKit/chromium/public/
WebIDBObjectStore.h 84 virtual void deleteIndex(const WebString& name, const WebIDBTransaction&, WebExceptionCode&) { WEBKIT_ASSERT_NOT_REACHED(); }
  /external/webkit/Source/WebKit/chromium/src/
WebIDBObjectStoreImpl.h 59 void deleteIndex(const WebString& name, const WebIDBTransaction&, WebExceptionCode&);
WebIDBObjectStoreImpl.cpp 106 void WebIDBObjectStoreImpl::deleteIndex(const WebString& name, const WebIDBTransaction& transaction, WebExceptionCode& ec)
108 m_objectStore->deleteIndex(name, transaction.getIDBTransactionBackendInterface(), ec);
IDBObjectStoreBackendProxy.h 56 void deleteIndex(const String& name, WebCore::IDBTransactionBackendInterface*, WebCore::ExceptionCode&);
IDBObjectStoreBackendProxy.cpp 128 void IDBObjectStoreBackendProxy::deleteIndex(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
133 m_webIDBObjectStore->deleteIndex(name, *transactionProxy->getWebIDBTransaction(), ec);
  /external/webkit/Source/WebCore/storage/
IDBObjectStore.idl 51 void deleteIndex(in DOMString name)
IDBObjectStoreBackendInterface.h 67 virtual void deleteIndex(const String& name, IDBTransactionBackendInterface*, ExceptionCode&) = 0;
IDBObjectStore.h 76 void deleteIndex(const String& name, ExceptionCode&);
IDBObjectStore.cpp 146 void IDBObjectStore::deleteIndex(const String& name, ExceptionCode& ec)
148 m_objectStore->deleteIndex(name, m_transaction->backend(), ec);
IDBBackingStore.h 79 virtual void deleteIndex(int64_t databaseId, int64_t objectStoreId, int64_t indexId) = 0;
IDBLevelDBBackingStore.h 63 virtual void deleteIndex(int64_t databaseId, int64_t objectStoreId, int64_t indexId);
IDBObjectStoreBackendImpl.h 76 virtual void deleteIndex(const String& name, IDBTransactionBackendInterface*, ExceptionCode&);
IDBSQLiteBackingStore.h 58 virtual void deleteIndex(int64_t databaseId, int64_t objectStoreId, int64_t indexId);
IDBObjectStoreBackendImpl.cpp 423 void IDBObjectStoreBackendImpl::deleteIndex(const String& name, IDBTransactionBackendInterface* transaction, ExceptionCode& ec)
448 objectStore->m_backingStore->deleteIndex(objectStore->m_databaseId, objectStore->id(), index->id());
IDBSQLiteBackingStore.cpp 583 void IDBSQLiteBackingStore::deleteIndex(int64_t, int64_t, int64_t indexId)
    [all...]
IDBLevelDBBackingStore.cpp     [all...]

Completed in 55 milliseconds