/external/chromium_org/content/test/data/indexeddb/ |
D | index_test.js | 102 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);
|
D | bug_109187.js | 15 window.index1 = store.createIndex('index1Name', 'prop1'); 16 window.index2 = store.createIndex(
|
D | object_store_test.js | 99 objectStore.createIndex('fname_index', 'fname'); 100 objectStore.createIndex('lname_index', 'fname');
|
D | cursor_prefetch.js | 22 store.createIndex('index', '');
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
D | IDBObjectStore.h | 78 …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…
|
D | IDBObjectStore.idl | 53 …[CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, DOMString keyPath, op… 54 …[CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name, sequence<DOMString> k…
|
D | IDBObjectStore.cpp | 407 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/ |
D | indexeddb_app.js | 65 syncStore.createIndex('doc-index', 'docid'); 69 docStore.createIndex( 74 userEventStore.createIndex('doc-index', 'docid');
|
/external/chromium_org/third_party/WebKit/public/platform/ |
D | WebIDBDatabase.h | 59 …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/ |
D | DatabaseAuthorizer.h | 61 int createIndex(const String& indexName, const String& tableName);
|
D | DatabaseAuthorizer.cpp | 173 int DatabaseAuthorizer::createIndex(const String&, const String& tableName) in createIndex() function in blink::DatabaseAuthorizer
|
/external/chromium_org/content/child/indexed_db/ |
D | webidbdatabase_impl.h | 90 virtual void createIndex(long long transactionId,
|
D | webidbdatabase_impl.cc | 238 void WebIDBDatabaseImpl::createIndex(long long transaction_id, in createIndex() function in content::WebIDBDatabaseImpl
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
D | SQLiteDatabase.cpp | 276 return auth->createIndex(parameter1, parameter2); in authorizerFunction()
|