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

  /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;
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);
IDBObjectStore.h 67 bool autoIncrement() const { return m_metadata.autoIncrement; }
IDBObjectStore.idl 35 readonly attribute boolean autoIncrement;
IDBDatabase.h 77 IDBObjectStore* createObjectStore(const String& name, const IDBKeyPath&, bool autoIncrement, ExceptionState&);
IDBCursor.cpp 331 if (metadata.autoIncrement && !metadata.keyPath.isNull()) {
IDBObjectStore.cpp 187 const bool hasKeyGenerator = autoIncrement();
InspectorIndexedDBAgent.cpp 294 .setAutoIncrement(objectStoreMetadata.autoIncrement)
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 62 bool autoIncrement;
68 , autoIncrement(false) { }
WebIDBDatabase.h 56 virtual void createObjectStore(long long transactionId, long long objectStoreId, const WebString& name, const WebIDBKeyPath&, bool autoIncrement) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBMetadata.cpp 53 webObjectStore.autoIncrement = objectStore.autoIncrement;
77 IDBObjectStoreMetadata objectStore(webObjectStore.name, webObjectStore.id, webObjectStore.keyPath, webObjectStore.autoIncrement, webObjectStore.maxIndexId);
  /libcore/luni/src/main/java/javax/sql/
RowSetMetaData.java 45 * @param autoIncrement
51 public void setAutoIncrement(int columnIndex, boolean autoIncrement)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IndexedDBModel.js 324 var objectStoreModel = new WebInspector.IndexedDBModel.ObjectStore(objectStore.name, objectStoreIDBKeyPath, objectStore.autoIncrement);
463 * @param {boolean} autoIncrement
465 WebInspector.IndexedDBModel.ObjectStore = function(name, keyPath, autoIncrement)
469 this.autoIncrement = autoIncrement;
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app.js 68 'sync-chunks', {keyPath: 'sequence', autoIncrement: true});
77 'user-events', {keyPath: 'sequence', autoIncrement: true});
  /external/chromium_org/content/common/indexed_db/
indexed_db_messages.h 311 IPC_STRUCT_MEMBER(bool, autoIncrement)
  /external/chromium_org/content/child/indexed_db/
indexed_db_dispatcher.cc 107 web_store_metadata.autoIncrement = idb_store_metadata.autoIncrement;
  /external/chromium_org/content/browser/indexed_db/
indexed_db_dispatcher_host.cc 253 idb_store_metadata.autoIncrement = web_store_metadata.auto_increment;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
ResourcesPanel.js     [all...]
  /external/robolectric/lib/main/
h2-1.2.147.jar 

Completed in 300 milliseconds