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

  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 62 bool autoIncrement;
68 , autoIncrement(false) { }
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBMetadata.h 58 IDBObjectStoreMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIndexId)
62 , autoIncrement(autoIncrement)
69 bool autoIncrement;
IDBObjectStore.h 65 bool autoIncrement() const { return m_metadata.autoIncrement; }
IDBDatabase.cpp 171 bool autoIncrement = false;
180 options.get("autoIncrement", autoIncrement);
183 return createObjectStore(name, keyPath, autoIncrement, es);
186 PassRefPtr<IDBObjectStore> IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& es)
213 if (autoIncrement && ((keyPath.type() == IDBKeyPath::StringType && keyPath.string().isEmpty()) || keyPath.type() == IDBKeyPath::ArrayType)) {
214 es.throwDOMException(InvalidAccessError, "The autoIncrement option was set but the keyPath option was empty or an array.");
219 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
221 IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, IDBDatabaseBackendInterface::MinimumIndexId);
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 283 milliseconds