HomeSort by relevance Sort by last modified time
    Searched defs:autoIncrement (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/storage/
IDBDatabase.cpp 84 bool autoIncrement = false;
85 options.getKeyBool("autoIncrement", autoIncrement);
88 RefPtr<IDBObjectStoreBackendInterface> objectStore = m_backend->createObjectStore(name, keyPath, autoIncrement, m_setVersionTransaction->backend(), ec);
IDBObjectStoreBackendImpl.h 45 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement)
47 return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, id, name, keyPath, autoIncrement));
49 static PassRefPtr<IDBObjectStoreBackendImpl> create(IDBBackingStore* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement)
51 return adoptRef(new IDBObjectStoreBackendImpl(backingStore, databaseId, name, keyPath, autoIncrement));
67 virtual bool autoIncrement() const { return m_autoIncrement; }
81 IDBObjectStoreBackendImpl(IDBBackingStore*, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement);
82 IDBObjectStoreBackendImpl(IDBBackingStore*, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement);
IDBObjectStoreBackendImpl.cpp 53 IDBObjectStoreBackendImpl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, int64_t id, const String& name, const String& keyPath, bool autoIncrement)
59 , m_autoIncrement(autoIncrement)
65 IDBObjectStoreBackendImpl::IDBObjectStoreBackendImpl(IDBBackingStore* backingStore, int64_t databaseId, const String& name, const String& keyPath, bool autoIncrement)
71 , m_autoIncrement(autoIncrement)
144 const bool autoIncrement = objectStore->autoIncrement();
152 if (autoIncrement && key) {
157 if (autoIncrement) {
IDBLevelDBBackingStore.cpp     [all...]

Completed in 57 milliseconds