Searched refs:autoIncrement (Results 1 - 18 of 18) sorted by relevance

/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 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);
H A DIDBObjectStore.h68 bool autoIncrement() const { return m_metadata.autoIncrement; } function in class:blink::IDBObjectStore
H A DIDBObjectStore.idl43 readonly attribute boolean autoIncrement;
H A DIDBDatabase.h77 IDBObjectStore* createObjectStore(const String& name, const IDBKeyPath&, bool autoIncrement, ExceptionState&);
H A DIDBCursor.cpp302 if (metadata.autoIncrement && !metadata.keyPath.isNull()) {
H A DIDBObjectStore.cpp191 const bool hasKeyGenerator = autoIncrement();
H A DInspectorIndexedDBAgent.cpp295 .setAutoIncrement(objectStoreMetadata.autoIncrement)
/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/web/
H A DWebIDBMetadata.cpp51 webObjectStore.autoIncrement = objectStore.autoIncrement;
75 IDBObjectStoreMetadata objectStore(webObjectStore.name, webObjectStore.id, webObjectStore.keyPath, webObjectStore.autoIncrement, webObjectStore.maxIndexId);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DIndexedDBModel.js335 var objectStoreModel = new WebInspector.IndexedDBModel.ObjectStore(objectStore.name, objectStoreIDBKeyPath, objectStore.autoIncrement);
474 * @param {boolean} autoIncrement
476 WebInspector.IndexedDBModel.ObjectStore = function(name, keyPath, autoIncrement)
480 this.autoIncrement = autoIncrement;
/external/chromium_org/tools/perf/page_sets/endure/
H A Dindexeddb_app.js64 'sync-chunks', {keyPath: 'sequence', autoIncrement: true});
73 'user-events', {keyPath: 'sequence', autoIncrement: true});
/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_messages.h315 IPC_STRUCT_MEMBER(bool, autoIncrement)
/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_dispatcher.cc107 web_store_metadata.autoIncrement = idb_store_metadata.autoIncrement;
/external/chromium_org/content/browser/indexed_db/
H A Dindexed_db_dispatcher_host.cc253 idb_store_metadata.autoIncrement = web_store_metadata.auto_increment;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
H A DResourcesPanel.js1787 if (this._objectStore.autoIncrement)
1788 tooltipString += "\n" + WebInspector.UIString("autoIncrement");
/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 4462 milliseconds