/external/chromium_org/content/test/data/indexeddb/ |
H A D | key_path_test.js | 43 function createObjectStore() function 45 debug('createObjectStore'); 47 window.objectStore = db.createObjectStore('test', {keyPath: 'keyPath'}); 54 indexedDBTest(createObjectStore);
|
H A D | database_test.js | 13 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'});
|
H A D | bug_90635.js | 29 db.createObjectStore('store1'); 30 db.createObjectStore('store2', {keyPath: ''}); 31 db.createObjectStore('store3', {keyPath: 'some_path'});
|
H A D | bug_109187.js | 16 var store = db.createObjectStore('storeName');
|
H A D | callback_accounting.js | 13 request1.result.createObjectStore('store');
|
H A D | version_change_crash.js | 30 openreq.result.createObjectStore('store1'); 53 var store = db.createObjectStore('store2');
|
H A D | cursor_test.js | 57 window.objectStore = db.createObjectStore('test');
|
H A D | transaction_get_test.js | 49 window.objectStore = db.createObjectStore('storeName');
|
H A D | transaction_run_forever.js | 27 db.createObjectStore('store');
|
H A D | version_change_blocked.js | 33 db.createObjectStore("someobjectstore");
|
H A D | object_store_test.js | 94 db.createObjectStore('stuff'); 95 window.objectStore = db.createObjectStore('employees', {keyPath: 'id'});
|
H A D | transaction_test.js | 67 db.createObjectStore('employees', {keyPath: 'id'});
|
H A D | index_test.js | 130 window.objectStore = db.createObjectStore('test');
|
H A D | key_types_test.js | 15 db.createObjectStore('store');
|
H A D | quota_test.js | 27 objectStore = db.createObjectStore("test123");
|
H A D | value_size_test.js | 14 var store = db.createObjectStore('store');
|
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/ |
H A D | IDBDatabase.idl | 39 [RaisesException] IDBObjectStore createObjectStore(DOMString name, optional Dictionary options);
|
H A D | IDBDatabase.h | 66 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const Dictionary&, ExceptionState&); 67 PassRefPtr<IDBObjectStore> createObjectStore(const String& name, const IDBKeyPath&, bool autoIncrement, ExceptionState&);
|
H A D | IDBDatabase.cpp | 168 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 D | IDBDatabaseBackendInterface.h | 51 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 D | IDBDatabaseBackendProxy.cpp | 61 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 D | IDBDatabaseBackendProxy.h | 43 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 D | WebIDBDatabase.h | 47 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 D | cache.js | 93 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 D | proxy_webidbdatabase_impl.h | 29 virtual void createObjectStore(
|