/external/webkit/LayoutTests/storage/indexeddb/ |
D | index-basics-expected.txt | 14 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')
|
D | transaction-basics-expected.txt | 21 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)
|
D | objectstore-basics-expected.txt | 25 createIndex(): 26 index = store.createIndex('indexName', 'x', {unique: true}) 40 index = store.createIndex('indexFail', 'x')
|
D | queued-commands-expected.txt | 14 store.createIndex('indexName', 'x')
|
D | objectstore-clear-expected.txt | 13 store.createIndex('indexName', '')
|
D | objectstore-removeobjectstore-expected.txt | 13 store.createIndex('indexName', '')
|
D | duplicates-expected.txt | 14 store.createIndex('indexName', 'x') 58 store.createIndex('indexName', 'x')
|
D | cursor-index-delete-expected.txt | 14 objectStore.createIndex('testIndex', 'x')
|
D | cursor-skip-deleted-expected.txt | 14 objectStore.createIndex('nameIndex', 'name')
|
D | cursor-continue-expected.txt | 13 objectStore.createIndex('someIndex', 'x')
|
/external/webkit/Source/WebCore/storage/ |
D | IDBObjectStore.h | 64 …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&, …
|
D | IDBObjectStore.cpp | 125 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()
|
D | IDBObjectStoreBackendInterface.h | 65 …virtual PassRefPtr<IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath…
|
D | DatabaseAuthorizer.h | 60 int createIndex(const String& indexName, const String& tableName);
|
D | IDBSQLiteBackingStore.h | 57 …virtual bool createIndex(int64_t databaseId, int64_t objectStoreId, const String& name, const Stri…
|
D | IDBObjectStore.idl | 47 …IDBIndex createIndex(in DOMString name, in [ConvertNullToNullString] DOMString keyPath, in [Option…
|
D | IDBLevelDBBackingStore.h | 62 …virtual bool createIndex(int64_t databaseId, int64_t objectStoreId, const String& name, const Stri…
|
D | IDBObjectStoreBackendImpl.h | 74 …virtual PassRefPtr<IDBIndexBackendInterface> createIndex(const String& name, const String& keyPath…
|
D | IDBBackingStore.h | 78 …virtual bool createIndex(int64_t databaseId, int64_t objectStoreId, const String& name, const Stri…
|
D | DatabaseAuthorizer.cpp | 176 int DatabaseAuthorizer::createIndex(const String&, const String& tableName) in createIndex() function in WebCore::DatabaseAuthorizer
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebIDBObjectStoreImpl.cpp | 90 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()
|
D | IDBObjectStoreBackendProxy.cpp | 109 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()
|
D | WebIDBObjectStoreImpl.h | 57 …WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, const WebID…
|
D | IDBObjectStoreBackendProxy.h | 54 …PassRefPtr<WebCore::IDBIndexBackendInterface> createIndex(const String& name, const String& keyPat…
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebIDBObjectStore.h | 73 …virtual WebIDBIndex* createIndex(const WebString& name, const WebString& keyPath, bool unique, con… in createIndex() function
|