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

  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.h 59 bool multiEntry() const { return m_metadata.multiEntry; }
IDBMetadata.h 41 IDBIndexMetadata(const String& name, int64_t id, const IDBKeyPath& keyPath, bool unique, bool multiEntry)
46 , multiEntry(multiEntry) { }
51 bool multiEntry;
IDBObjectStore.cpp 113 if (!indexMetadata.multiEntry || indexKey->type() != IDBKey::ArrayType) {
119 ASSERT(indexMetadata.multiEntry);
373 bool multiEntry = false;
374 options.get("multiEntry", multiEntry);
376 return createIndex(context, name, keyPath, unique, multiEntry, es);
379 PassRefPtr<IDBIndex> IDBObjectStore::createIndex(ScriptExecutionContext* context, const String& name, const IDBKeyPath& keyPath, bool unique, bool multiEntry, ExceptionState& es)
411 if (keyPath.type() == IDBKeyPath::ArrayType && multiEntry) {
412 es.throwDOMException(InvalidAccessError, "The keyPath argument was an array and the multiEntry option is true.");
417 backendDB()->createIndex(m_transaction->id(), id(), indexId, name, keyPath, unique, multiEntry);
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 75 bool multiEntry;
80 , multiEntry(false) { }

Completed in 60 milliseconds