Home
last modified time | relevance | path

Searched refs:createIndex (Results 1 – 25 of 38) sorted by relevance

12

/external/webkit/LayoutTests/storage/indexeddb/
Dindex-basics-expected.txt14 store.createIndex('indexName', 'x')
15 store.createIndex('indexName2', 'y', false)
16 store.createIndex('zIndex', 'z', true)
31 store.createIndex('indexWhileAddIsInFlight', 'x')
32 store.createIndex('indexWithWeirdKeyPath', 'foobar')
Dtransaction-basics-expected.txt21 index = store.createIndex('indexFail', 'x', false)
32 index = store.createIndex('indexFail', 'x', false)
36 index = store.createIndex('indexFail', 'x', false)
46 index = store.createIndex('indexFail', 'x', false)
Dobjectstore-basics-expected.txt25 createIndex():
26 index = store.createIndex('indexName', 'x', {unique: true})
40 index = store.createIndex('indexFail', 'x')
Dqueued-commands-expected.txt14 store.createIndex('indexName', 'x')
Dobjectstore-clear-expected.txt13 store.createIndex('indexName', '')
Dobjectstore-removeobjectstore-expected.txt13 store.createIndex('indexName', '')
Dduplicates-expected.txt14 store.createIndex('indexName', 'x')
58 store.createIndex('indexName', 'x')
Dcursor-index-delete-expected.txt14 objectStore.createIndex('testIndex', 'x')
Dcursor-skip-deleted-expected.txt14 objectStore.createIndex('nameIndex', 'name')
Dcursor-continue-expected.txt13 objectStore.createIndex('someIndex', 'x')
/external/webkit/Source/WebCore/storage/
DIDBObjectStore.h64 …PassRefPtr<IDBIndex> createIndex(const String& name, const String& keyPath, ExceptionCode& ec) { r… in createIndex() function
74 …PassRefPtr<IDBIndex> createIndex(const String& name, const String& keyPath, const OptionsObject&, …
DIDBObjectStore.cpp125 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(const String& name, const String& keyPath, const O… in createIndex() function in WebCore::IDBObjectStore
130 …RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, m_trans… in createIndex()
DIDBObjectStoreBackendInterface.h65 …virtual PassRefPtr<IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath…
DDatabaseAuthorizer.h60 int createIndex(const String& indexName, const String& tableName);
DIDBSQLiteBackingStore.h57 …virtual bool createIndex(int64_t databaseId, int64_t objectStoreId, const String& name, const Stri…
DIDBObjectStore.idl47 …IDBIndex createIndex(in DOMString name, in [ConvertNullToNullString] DOMString keyPath, in [Option…
DIDBLevelDBBackingStore.h62 …virtual bool createIndex(int64_t databaseId, int64_t objectStoreId, const String& name, const Stri…
DIDBObjectStoreBackendImpl.h74 …virtual PassRefPtr<IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath…
DIDBBackingStore.h78 …virtual bool createIndex(int64_t databaseId, int64_t objectStoreId, const String& name, const Stri…
DDatabaseAuthorizer.cpp176 int DatabaseAuthorizer::createIndex(const String&, const String& tableName) in createIndex() function in WebCore::DatabaseAuthorizer
/external/webkit/Source/WebKit/chromium/src/
DWebIDBObjectStoreImpl.cpp90 WebIDBIndex* WebIDBObjectStoreImpl::createIndex(const WebString& name, const WebString& keyPath, bo… in createIndex() function in WebKit::WebIDBObjectStoreImpl
92 …RefPtr<IDBIndexBackendInterface> index = m_objectStore->createIndex(name, keyPath, unique, transac… in createIndex()
DIDBObjectStoreBackendProxy.cpp109 PassRefPtr<IDBIndexBackendInterface> IDBObjectStoreBackendProxy::createIndex(const String& name, co… in createIndex() function in WebKit::IDBObjectStoreBackendProxy
114 …WebIDBIndex* index = m_webIDBObjectStore->createIndex(name, keyPath, unique, *transactionProxy->ge… in createIndex()
DWebIDBObjectStoreImpl.h57 …WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, const WebID…
DIDBObjectStoreBackendProxy.h54 …PassRefPtr<WebCore::IDBIndexBackendInterface> createIndex(const String& name, const String& keyPat…
/external/webkit/Source/WebKit/chromium/public/
DWebIDBObjectStore.h73 …virtual WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, con… in createIndex() function

12