/external/webkit/Source/WebCore/storage/ |
D | IDBObjectStoreBackendImpl.h | 45 …ore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement) in create() argument 47 …doptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, id, name, keyPath, autoIncrement)); in create() 49 …e* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement) in create() argument 51 …rn adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, name, keyPath, autoIncrement)); in create() 67 virtual bool autoIncrement() const { return m_autoIncrement; } in autoIncrement() function 81 …e*, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement); 82 …BBackingStore*, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement);
|
D | IDBDatabase.cpp | 84 bool autoIncrement = false; in createObjectStore() local 85 options.getKeyBool("autoIncrement", autoIncrement); in createObjectStore() 88 …dInterface> objectStore = m_backend->createObjectStore(name, keyPath, autoIncrement, m_setVersionT… in createObjectStore()
|
D | IDBObjectStoreBackendImpl.cpp | 53 …ore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement) in IDBObjectStoreBackendImpl() argument 59 , m_autoIncrement(autoIncrement) in IDBObjectStoreBackendImpl() 65 …e* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement) in IDBObjectStoreBackendImpl() argument 71 , m_autoIncrement(autoIncrement) in IDBObjectStoreBackendImpl() 144 const bool autoIncrement = objectStore->autoIncrement(); in selectKeyForPut() local 152 if (autoIncrement && key) { in selectKeyForPut() 157 if (autoIncrement) { in selectKeyForPut()
|
D | IDBDatabaseBackendImpl.cpp | 100 …pl::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactio… in createObjectStore() argument 109 …tore = IDBObjectStoreBackendImpl::create(m_backingStore.get(), m_id, name, keyPath, autoIncrement); in createObjectStore() 128 …base->id(), objectStore->name(), objectStore->keyPath(), objectStore->autoIncrement(), objectStore… in createObjectStoreInternal()
|
D | IDBDatabaseBackendInterface.h | 57 …ce> createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactio…
|
D | IDBDatabaseBackendImpl.h | 63 …ce> createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactio…
|
D | IDBSQLiteBackingStore.h | 44 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi…
|
D | IDBLevelDBBackingStore.h | 49 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi…
|
D | IDBBackingStore.h | 53 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi…
|
D | IDBSQLiteBackingStore.cpp | 266 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi… in createObjectStore() argument 274 query.bindInt(3, static_cast<int>(autoIncrement)); in createObjectStore()
|
D | IDBLevelDBBackingStore.cpp | 1603 bool autoIncrement = *it->value().begin(); in getObjectStores() local 1626 foundAutoIncrementFlags.append(autoIncrement); in getObjectStores() 1662 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi… in createObjectStore() argument 1686 ok = putInt(m_db.get(), autoIncrementKey, autoIncrement); in createObjectStore()
|
/external/webkit/LayoutTests/storage/indexeddb/ |
D | objectstore-autoincrement-expected.txt | 15 store = db.createObjectStore('StoreWithKeyPath', {keyPath: 'id', autoIncrement: true}) 16 db.createObjectStore('StoreWithAutoIncrement', {autoIncrement: true}) 17 db.createObjectStore('PlainOldStore', {autoIncrement: false})
|
D | create-object-store-options-expected.txt | 14 db.createObjectStore('c', {autoIncrement: true});
|
D | cursor-update-expected.txt | 18 objectStore = db.createObjectStore('autoIncrementStore', {autoIncrement: true})
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebIDBDatabaseImpl.cpp | 69 …eateObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBT… in createObjectStore() argument 71 …ce> objectStore = m_databaseBackend->createObjectStore(name, keyPath, autoIncrement, transaction.g… in createObjectStore()
|
D | IDBDatabaseBackendProxy.cpp | 78 …xy::createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactio… in createObjectStore() argument 83 …ore* objectStore = m_webIDBDatabase->createObjectStore(name, keyPath, autoIncrement, *transactionP… in createObjectStore()
|
D | WebIDBDatabaseImpl.h | 56 …eateObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBT…
|
D | IDBDatabaseBackendProxy.h | 49 …ce> createObjectStore(const String& name, const String& keyPath, bool autoIncrement, WebCore::IDBT…
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebIDBDatabase.h | 61 …eateObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBT… in createObjectStore() argument
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 5475 Raise an exception if createObjectStore is called with autoIncrement 33841 (WebCore::IDBObjectStoreBackendImpl::autoIncrement): 39596 (WebCore::IDBObjectStoreBackendImpl::autoIncrement):
|