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 60 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 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...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 75 bool multiEntry;
80 , multiEntry(false) { }

Completed in 250 milliseconds