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

  /external/chromium_org/content/test/data/indexeddb/
bug_109187.js 9 var DBNAME = 'multiEntry-crash-test';
19 'index2Name', 'prop2', {multiEntry: true});
20 shouldBeFalse("window.index1.multiEntry");
21 shouldBeTrue("window.index2.multiEntry");
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBMetadata.h 41 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry)
46 , multiEntry(multiEntry) { }
51 bool multiEntry;
IDBIndex.h 60 bool multiEntry() const { return m_metadata.multiEntry; }
IDBIndex.idl 33 readonly attribute boolean multiEntry;
IDBObjectStore.cpp 128 if (!indexMetadata.multiEntry || indexKey->type() != IDBKey::ArrayType) {
134 ASSERT(indexMetadata.multiEntry);
391 bool multiEntry = false;
392 options.get("multiEntry", multiEntry);
394 return createIndex(scriptState, name, keyPath, unique, multiEntry, exceptionState);
397 IDBIndex* IDBObjectStore::createIndex(ScriptState* scriptState, const String& name, const IDBKeyPath& keyPath, bool unique, bool multiEntry, ExceptionState& exceptionState)
429 if (keyPath.type() == IDBKeyPath::ArrayType && multiEntry) {
430 exceptionState.throwDOMException(InvalidAccessError, "The keyPath argument was an array and the multiEntry option is true.");
439 backendDB()->createIndex(m_transaction->id(), id(), indexId, name, keyPath, unique, multiEntry);
    [all...]
IDBObjectStore.h 111 IDBIndex* createIndex(ScriptState*, const String& name, const IDBKeyPath&, bool unique, bool multiEntry, ExceptionState&);
InspectorIndexedDBAgent.cpp 287 .setMultiEntry(indexMetadata.multiEntry);
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 75 bool multiEntry;
80 , multiEntry(false) { }
WebIDBDatabase.h 65 virtual void createIndex(long long transactionId, long long objectStoreId, long long indexId, const WebString& name, const WebIDBKeyPath&, bool unique, bool multiEntry) { BLINK_ASSERT_NOT_REACHED(); }
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBMetadata.cpp 65 webIndex.multiEntry = index.multiEntry;
81 IDBIndexMetadata index(webIndex.name, webIndex.id, webIndex.keyPath, webIndex.unique, webIndex.multiEntry);
  /external/chromium_org/content/child/indexed_db/
webidbdatabase_impl.h 92 bool multiEntry);
indexed_db_dispatcher.cc 122 web_index_metadata.multiEntry = idb_index_metadata.multiEntry;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
IndexedDBModel.js 328 var indexModel = new WebInspector.IndexedDBModel.Index(index.name, indexIDBKeyPath, index.unique, index.multiEntry);
488 * @param {boolean} multiEntry
490 WebInspector.IndexedDBModel.Index = function(name, keyPath, unique, multiEntry)
495 this.multiEntry = multiEntry;
  /external/chromium_org/content/common/indexed_db/
indexed_db_messages.h 304 IPC_STRUCT_MEMBER(bool, multiEntry)
  /external/chromium_org/tools/perf/page_sets/endure/
indexeddb_app.js 74 'owner-index', 'owner', {multiEntry: true});
  /external/chromium_org/content/browser/indexed_db/
indexed_db_dispatcher_host.cc 267 idb_index_metadata.multiEntry = web_index_metadata.multi_entry;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/
ResourcesPanel.js     [all...]

Completed in 898 milliseconds