OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:multiEntry
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBIndex.h
58
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
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
...]
/external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h
75
bool
multiEntry
;
80
,
multiEntry
(false) { }
Completed in 144 milliseconds