Home
last modified time | relevance | path

Searched refs:autoIncrement (Results 1 – 20 of 20) sorted by relevance

/external/webkit/Source/WebCore/storage/
DIDBObjectStoreBackendImpl.h45 …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);
DIDBDatabase.cpp84 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()
DIDBObjectStoreBackendImpl.cpp53 …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()
DIDBDatabaseBackendImpl.cpp100 …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()
DIDBDatabaseBackendInterface.h57 …ce> createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactio…
DIDBDatabaseBackendImpl.h63 …ce> createObjectStore(const String& name, const String& keyPath, bool autoIncrement, IDBTransactio…
DIDBSQLiteBackingStore.h44 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi…
DIDBLevelDBBackingStore.h49 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi…
DIDBBackingStore.h53 …e(int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement, int64_t& assi…
DIDBSQLiteBackingStore.cpp266 …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()
DIDBLevelDBBackingStore.cpp1603 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/
Dobjectstore-autoincrement-expected.txt15 store = db.createObjectStore('StoreWithKeyPath', {keyPath: 'id', autoIncrement: true})
16 db.createObjectStore('StoreWithAutoIncrement', {autoIncrement: true})
17 db.createObjectStore('PlainOldStore', {autoIncrement: false})
Dcreate-object-store-options-expected.txt14 db.createObjectStore('c', {autoIncrement: true});
Dcursor-update-expected.txt18 objectStore = db.createObjectStore('autoIncrementStore', {autoIncrement: true})
/external/webkit/Source/WebKit/chromium/src/
DWebIDBDatabaseImpl.cpp69 …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()
DIDBDatabaseBackendProxy.cpp78 …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()
DWebIDBDatabaseImpl.h56 …eateObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBT…
DIDBDatabaseBackendProxy.h49 …ce> createObjectStore(const String& name, const String& keyPath, bool autoIncrement, WebCore::IDBT…
/external/webkit/Source/WebKit/chromium/public/
DWebIDBDatabase.h61 …eateObjectStore(const WebString& name, const WebString& keyPath, bool autoIncrement, const WebIDBT… in createObjectStore() argument
/external/webkit/Source/WebCore/
DChangeLog-2010-12-065475 Raise an exception if createObjectStore is called with autoIncrement
33841 (WebCore::IDBObjectStoreBackendImpl::autoIncrement):
39596 (WebCore::IDBObjectStoreBackendImpl::autoIncrement):