Home
last modified time | relevance | path

Searched refs:autoIncrement (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
DIDBMetadata.h58 …adata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool autoIncrement, int64_t maxIn… in IDBObjectStoreMetadata()
62 , autoIncrement(autoIncrement) in IDBObjectStoreMetadata()
69 bool autoIncrement; member
DIDBDatabase.cpp175 bool autoIncrement = false; in createObjectStore() local
184 options.get("autoIncrement", autoIncrement); in createObjectStore()
187 return createObjectStore(name, keyPath, autoIncrement, exceptionState); in createObjectStore()
190 …createObjectStore(const String& name, const IDBKeyPath& keyPath, bool autoIncrement, ExceptionStat… in createObjectStore() argument
217 …if (autoIncrement && ((keyPath.type() == IDBKeyPath::StringType && keyPath.string().isEmpty()) || … in createObjectStore()
223 …->createObjectStore(m_versionChangeTransaction->id(), objectStoreId, name, keyPath, autoIncrement); in createObjectStore()
225 …IDBObjectStoreMetadata metadata(name, objectStoreId, keyPath, autoIncrement, WebIDBDatabase::minim… in createObjectStore()
DIDBObjectStore.h65 bool autoIncrement() const { return m_metadata.autoIncrement; } in autoIncrement() function
DIDBDatabase.h72 …tStore> createObjectStore(const String& name, const IDBKeyPath&, bool autoIncrement, ExceptionStat…
DIDBObjectStore.idl32 readonly attribute boolean autoIncrement;
DIDBCursor.cpp334 if (metadata.autoIncrement && !metadata.keyPath.isNull()) { in value()
DIDBObjectStore.cpp184 const bool hasKeyGenerator = autoIncrement(); in put()
/external/chromium_org/third_party/WebKit/Source/web/
DWebIDBMetadata.cpp53 webObjectStore.autoIncrement = objectStore.autoIncrement; in WebIDBMetadata()
77 …Store.name, webObjectStore.id, webObjectStore.keyPath, webObjectStore.autoIncrement, webObjectStor… in operator IDBDatabaseMetadata()
/external/chromium_org/third_party/WebKit/public/platform/
DWebIDBMetadata.h62 bool autoIncrement; member
68 , autoIncrement(false) { } in ObjectStore()
DWebIDBDatabase.h47 …long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSER… in createObjectStore() argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DIndexedDBModel.js310 …tor.IndexedDBModel.ObjectStore(objectStore.name, objectStoreIDBKeyPath, objectStore.autoIncrement);
448 WebInspector.IndexedDBModel.ObjectStore = function(name, keyPath, autoIncrement) argument
452 this.autoIncrement = autoIncrement;
DResourcesPanel.js1724 if (this._objectStore.autoIncrement)
/external/chromium_org/tools/perf/page_sets/endure/
Dindexeddb_app.js68 'sync-chunks', {keyPath: 'sequence', autoIncrement: true}); property
77 'user-events', {keyPath: 'sequence', autoIncrement: true}); property
/external/chromium_org/content/child/indexed_db/
Dindexed_db_dispatcher.cc102 web_store_metadata.autoIncrement = idb_store_metadata.autoIncrement; in ConvertMetadata()
/external/chromium_org/content/common/indexed_db/
Dindexed_db_messages.h270 IPC_STRUCT_MEMBER(bool, autoIncrement)
/external/chromium_org/content/browser/indexed_db/
Dindexed_db_dispatcher_host.cc195 idb_store_metadata.autoIncrement = web_store_metadata.auto_increment; in ConvertMetadata()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorIndexedDBAgent.cpp292 .setAutoIncrement(objectStoreMetadata.autoIncrement) in execute()