Searched refs:createObjectStore (Results 1 - 25 of 30) sorted by relevance

12

/external/chromium_org/content/test/data/indexeddb/
H A Dkey_path_test.js43 function createObjectStore() function
45 debug('createObjectStore');
47 window.objectStore = db.createObjectStore('test', {keyPath: 'keyPath'});
54 indexedDBTest(createObjectStore);
H A Ddatabase_test.js13 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'});
H A Dbug_90635.js29 db.createObjectStore('store1');
30 db.createObjectStore('store2', {keyPath: ''});
31 db.createObjectStore('store3', {keyPath: 'some_path'});
H A Dbug_109187.js16 var store = db.createObjectStore('storeName');
H A Dcallback_accounting.js13 request1.result.createObjectStore('store');
H A Dversion_change_crash.js30 openreq.result.createObjectStore('store1');
53 var store = db.createObjectStore('store2');
H A Dcursor_test.js57 window.objectStore = db.createObjectStore('test');
H A Dtransaction_get_test.js49 window.objectStore = db.createObjectStore('storeName');
H A Dtransaction_run_forever.js27 db.createObjectStore('store');
H A Dversion_change_blocked.js33 db.createObjectStore("someobjectstore");
H A Dobject_store_test.js94 db.createObjectStore('stuff');
95 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'});
H A Dtransaction_test.js67 db.createObjectStore('employees', {keyPath: 'id'});
H A Dindex_test.js130 window.objectStore = db.createObjectStore('test');
H A Dkey_types_test.js15 db.createObjectStore('store');
H A Dquota_test.js27 objectStore = db.createObjectStore("test123");
H A Dvalue_size_test.js14 var store = db.createObjectStore('store');
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBDatabase.idl39 [RaisesException] IDBObjectStore createObjectStore(DOMString name, optional Dictionary options);
H A DIDBDatabase.h66 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const Dictionary&, ExceptionState&);
67 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const IDBKeyPath&, bool autoIncrement, ExceptionState&);
H A DIDBDatabase.cpp168 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const Dictionary& options, ExceptionState& es) function in class:WebCore::IDBDatabase
183 return createObjectStore(name, keyPath, autoIncrement, es);
186 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& es) function in class:WebCore::IDBDatabase
188 IDB_TRACE("IDBDatabase::createObjectStore");
219 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
H A DIDBDatabaseBackendInterface.h51 virtual void createObjectStore(int64_t transactionId, int64_t objectStoreId, const String& name, const IDBKeyPath&, bool autoIncrement) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
H A DIDBDatabaseBackendProxy.cpp61 void IDBDatabaseBackendProxy::createObjectStore(int64_t transactionId, int64_t objectStoreId, const String& name, const IDBKeyPath& keyPath, bool autoIncrement) function in class:WebKit::IDBDatabaseBackendProxy
64 m_webIDBDatabase->createObjectStore(transactionId, objectStoreId, name, keyPath, autoIncrement);
H A DIDBDatabaseBackendProxy.h43 virtual void createObjectStore(int64_t transactionId, int64_t objectStoreId, const String& name, const WebCore::IDBKeyPath&, bool autoIncrement);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBDatabase.h47 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { WEBKIT_ASSERT_NOT_REACHED(); } function in class:WebKit::WebIDBDatabase
/external/chromium_org/chrome/browser/resources/image_loader/
H A Dcache.js93 db.createObjectStore('metadata', {keyPath: 'key'});
94 db.createObjectStore('data', {keyPath: 'key'});
95 db.createObjectStore('settings', {keyPath: 'key'});
/external/chromium_org/content/child/indexed_db/
H A Dproxy_webidbdatabase_impl.h29 virtual void createObjectStore(

Completed in 185 milliseconds

12