/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 | 58 bool multiEntry() const { return m_metadata.multiEntry; }
|
IDBIndex.idl | 32 readonly attribute boolean multiEntry;
|
IDBObjectStore.cpp | 115 if (!indexMetadata.multiEntry || indexKey->type() != IDBKey::ArrayType) { 121 ASSERT(indexMetadata.multiEntry); 371 bool multiEntry = false; 372 options.get("multiEntry", multiEntry); 374 return createIndex(context, name, keyPath, unique, multiEntry, exceptionState); 377 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ExecutionContext* context, const String& name, const IDBKeyPath& keyPath, bool unique, bool multiEntry, ExceptionState& exceptionState) 409 if (keyPath.type() == IDBKeyPath::ArrayType && multiEntry) { 410 exceptionState.throwDOMException(InvalidAccessError, "The keyPath argument was an array and the multiEntry option is true."); 415 backendDB()->createIndex(m_transaction->id(), id(), indexId, name, keyPath, unique, multiEntry); [all...] |
IDBObjectStore.h | 104 PassRefPtr<IDBIndex> createIndex(ExecutionContext*, const String& name, const IDBKeyPath&, bool unique, bool multiEntry, ExceptionState&);
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebIDBMetadata.h | 75 bool multiEntry; 80 , multiEntry(false) { }
|
WebIDBDatabase.h | 56 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 | 89 bool multiEntry);
|
indexed_db_dispatcher.cc | 117 web_index_metadata.multiEntry = idb_index_metadata.multiEntry;
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
IndexedDBModel.js | 314 var indexModel = new WebInspector.IndexedDBModel.Index(index.name, indexIDBKeyPath, index.unique, index.multiEntry); 471 WebInspector.IndexedDBModel.Index = function(name, keyPath, unique, multiEntry) 476 this.multiEntry = multiEntry;
|
ResourcesPanel.js | [all...] |
/external/chromium_org/content/common/indexed_db/ |
indexed_db_messages.h | 263 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 | 209 idb_index_metadata.multiEntry = web_index_metadata.multi_entry; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorIndexedDBAgent.cpp | 285 .setMultiEntry(indexMetadata.multiEntry);
|