Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBObjectStore.h75createIndex(ExecutionContext* context, const String& name, const String& keyPath, const Dictionary… in createIndex() function
76createIndex(ExecutionContext* context, const String& name, const Vector<String>& keyPath, const Di… in createIndex() function
103 …PassRefPtr<IDBIndex> createIndex(ExecutionContext*, const String& name, const IDBKeyPath&, const D…
104 …PassRefPtr<IDBIndex> createIndex(ExecutionContext*, const String& name, const IDBKeyPath&, bool un…
DIDBObjectStore.idl42 …[CallWith=ExecutionContext, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMStri…
43 …[CallWith=ExecutionContext, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPat…
DIDBObjectStore.cpp366 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ExecutionContext* context, const String& name, con… in createIndex() function in WebCore::IDBObjectStore
374 return createIndex(context, name, keyPath, unique, multiEntry, exceptionState); in createIndex()
377 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ExecutionContext* context, const String& name, con… in createIndex() function in WebCore::IDBObjectStore
415 backendDB()->createIndex(m_transaction->id(), id(), indexId, name, keyPath, unique, multiEntry); in createIndex()
/external/chromium_org/content/test/data/indexeddb/
Dindex_test.js102 request = objectStore.createIndex('myIndex', 'aKey', {unique: true});
109 function createIndex(expect_error) function
113 window.index = objectStore.createIndex('myIndex', 'aKey', {unique: true});
123 createIndex(false);
Dbug_109187.js17 window.index1 = store.createIndex('index1Name', 'prop1');
18 window.index2 = store.createIndex(
Dobject_store_test.js99 objectStore.createIndex('fname_index', 'fname');
100 objectStore.createIndex('lname_index', 'fname');
Dcursor_prefetch.js22 store.createIndex('index', '');
/external/chromium_org/tools/perf/page_sets/endure/
Dindexeddb_app.js69 syncStore.createIndex('doc-index', 'docid');
73 docStore.createIndex(
78 userEventStore.createIndex('doc-index', 'docid');
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBDatabase.h56 …virtual void createIndex(long long transactionId, long long objectStoreId, long long indexId, cons… in createIndex() function
/external/chromium_org/content/child/indexed_db/
Dwebidbdatabase_impl.h83 virtual void createIndex(long long transactionId,
Dwebidbdatabase_impl.cc226 void WebIDBDatabaseImpl::createIndex(long long transaction_id, in createIndex() function in content::WebIDBDatabaseImpl
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DDatabaseAuthorizer.h60 int createIndex(const String& indexName, const String& tableName);
DDatabaseAuthorizer.cpp173 int DatabaseAuthorizer::createIndex(const String&, const String& tableName) in createIndex() function in WebCore::DatabaseAuthorizer
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
DSQLiteDatabase.cpp369 return auth->createIndex(parameter1, parameter2); in authorizerFunction()