Searched defs:autoIncrement (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/public/platform/
H A DWebIDBMetadata.h60 bool autoIncrement; member in struct:blink::WebIDBMetadata::ObjectStore
66 , autoIncrement(false) { }
H A DWebIDBDatabase.h50 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); } argument
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
H A DIDBMetadata.h58 IDBObjectStoreMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId) argument
62 , autoIncrement(autoIncrement)
69 bool autoIncrement; member in struct:blink::IDBObjectStoreMetadata
H A DIDBObjectStore.h68 bool autoIncrement() const { return m_metadata.autoIncrement; } function in class:blink::IDBObjectStore
H A DIDBDatabase.cpp201 bool autoIncrement = false; local
210 DictionaryHelper::get(options, "autoIncrement", autoIncrement);
213 return createObjectStore(name, keyPath, autoIncrement, exceptionState);
216 IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& exceptionState) argument
243 if (autoIncrement && ((keyPath.type() == IDBKeyPath::StringType && keyPath.string().isEmpty()) || keyPath.type() == IDBKeyPath::ArrayType)) {
244 exceptionState.throwDOMException(InvalidAccessError, "The autoIncrement option was set but the keyPath option was empty or an array.");
254 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
256 IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minimumIndexId);
/external/robolectric/lib/main/
H A Dh2-1.2.147.jarMETA-INF/MANIFEST.MF META-INF/services/java.sql.Driver org/h2/api/AggregateFunction ...

Completed in 913 milliseconds