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 60 bool autoIncrement;
66 , 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 68 bool autoIncrement() const { return m_metadata.autoIncrement; }
IDBDatabase.cpp 201 bool autoIncrement = false;
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)
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/
h2-1.2.147.jar 

Completed in 108 milliseconds