HomeSort by relevance Sort by last modified time
    Searched refs:createObjectStore (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/content/test/data/indexeddb/
key_path_test.js 43 function createObjectStore()
45 debug('createObjectStore');
47 window.objectStore = db.createObjectStore('test', {keyPath: 'keyPath'});
54 indexedDBTest(createObjectStore);
database_test.js 13 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'});
bug_90635.js 29 db.createObjectStore('store1');
30 db.createObjectStore('store2', {keyPath: ''});
31 db.createObjectStore('store3', {keyPath: 'some_path'});
bug_109187.js 16 var store = db.createObjectStore('storeName');
version_change_crash.js 30 openreq.result.createObjectStore('store1');
53 var store = db.createObjectStore('store2');
callback_accounting.js 13 request1.result.createObjectStore('store');
cursor_test.js 57 window.objectStore = db.createObjectStore('test');
transaction_get_test.js 49 window.objectStore = db.createObjectStore('storeName');
version_change_blocked.js 33 db.createObjectStore("someobjectstore");
object_store_test.js 94 db.createObjectStore('stuff');
95 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'});
transaction_run_forever.js 27 db.createObjectStore('store');
transaction_test.js 67 db.createObjectStore('employees', {keyPath: 'id'});
index_test.js 130 window.objectStore = db.createObjectStore('test');
key_types_test.js 15 db.createObjectStore('store');
quota_test.js 27 objectStore = db.createObjectStore("test123");
cursor_prefetch.js 21 var store = db.createObjectStore('store');
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.idl 36 [RaisesException] IDBObjectStore createObjectStore(DOMString name, optional Dictionary options);
IDBDatabase.h 76 IDBObjectStore* createObjectStore(const String& name, const Dictionary&, ExceptionState&);
77 IDBObjectStore* createObjectStore(const String& name, const IDBKeyPath&, bool autoIncrement, ExceptionState&);
IDBDatabase.cpp 199 IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const Dictionary& options, ExceptionState& exceptionState)
214 return createObjectStore(name, keyPath, autoIncrement, exceptionState);
217 IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& exceptionState)
219 IDB_TRACE("IDBDatabase::createObjectStore");
255 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.h 31 virtual void createObjectStore(long long transaction_id,
webidbdatabase_impl.cc 54 void WebIDBDatabaseImpl::createObjectStore(long long transaction_id,
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBDatabase.h 56 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app.js 67 var syncStore = db.createObjectStore(
71 var docStore = db.createObjectStore(
76 var userEventStore = db.createObjectStore(
  /external/chromium_org/ui/file_manager/image_loader/
cache.js 93 db.createObjectStore('metadata', {keyPath: 'key'});
94 db.createObjectStore('data', {keyPath: 'key'});
95 db.createObjectStore('settings', {keyPath: 'key'});
  /cts/suite/cts/deviceTests/browserbench/assets/octane/
mandreel.js     [all...]

Completed in 351 milliseconds