Home
last modified time | relevance | path

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

/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.js15 window.index1 = store.createIndex('index1Name', 'prop1');
16 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/third_party/WebKit/Source/modules/indexeddb/
DIDBObjectStore.h78 …IDBIndex* createIndex(ScriptState* scriptState, const String& name, const String& keyPath, const I… in createIndex() function
80 return createIndex(scriptState, name, IDBKeyPath(keyPath), options, exceptionState); in createIndex()
82 …IDBIndex* createIndex(ScriptState* scriptState, const String& name, const Vector<String>& keyPath,… in createIndex() function
84 return createIndex(scriptState, name, IDBKeyPath(keyPath), options, exceptionState); in createIndex()
111 …IDBIndex* createIndex(ScriptState*, const String& name, const IDBKeyPath&, const IDBIndexParameter…
DIDBObjectStore.idl53 …[CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, op…
54 …[CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> k…
DIDBObjectStore.cpp407 IDBIndex* IDBObjectStore::createIndex(ScriptState* scriptState, const String& name, const IDBKeyPat… in createIndex() function in blink::IDBObjectStore
449 …backendDB()->createIndex(m_transaction->id(), id(), indexId, name, keyPath, options.unique(), opti… in createIndex()
/external/chromium_org/tools/perf/page_sets/endure/
Dindexeddb_app.js65 syncStore.createIndex('doc-index', 'docid');
69 docStore.createIndex(
74 userEventStore.createIndex('doc-index', 'docid');
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBDatabase.h59 …virtual void createIndex(long long transactionId, long long objectStoreId, long long indexId, cons… in createIndex() function
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
DDatabaseAuthorizer.h61 int createIndex(const String& indexName, const String& tableName);
DDatabaseAuthorizer.cpp173 int DatabaseAuthorizer::createIndex(const String&, const String& tableName) in createIndex() function in blink::DatabaseAuthorizer
/external/chromium_org/content/child/indexed_db/
Dwebidbdatabase_impl.h90 virtual void createIndex(long long transactionId,
Dwebidbdatabase_impl.cc238 void WebIDBDatabaseImpl::createIndex(long long transaction_id, in createIndex() function in content::WebIDBDatabaseImpl
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
DSQLiteDatabase.cpp276 return auth->createIndex(parameter1, parameter2); in authorizerFunction()