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 67 bool autoIncrement() const { return m_metadata.autoIncrement; }
IDBDatabase.cpp 202 bool autoIncrement = false;
211 options.get("autoIncrement", autoIncrement);
214 return createObjectStore(name, keyPath, autoIncrement, exceptionState);
217 IDBObjectStore* IDBDatabase::createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionState& exceptionState)
244 if (autoIncrement && ((keyPath.type() == IDBKeyPath::StringType && keyPath.string().isEmpty()) || keyPath.type() == IDBKeyPath::ArrayType)) {
245 exceptionState.throwDOMException(InvalidAccessError, "The autoIncrement option was set but the keyPath option was empty or an array.");
255 m_backend->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement);
257 IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minimumIndexId);
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 53 milliseconds