Home | History | Annotate | Download | only in v8

Lines Matching defs:Dictionary

27 #include "bindings/v8/Dictionary.h"
60 Dictionary::Dictionary()
65 Dictionary::Dictionary(const v8::Handle<v8::Value>& options, v8::Isolate* isolate)
72 Dictionary::~Dictionary()
76 Dictionary& Dictionary::operator=(const Dictionary& optionsObject)
83 bool Dictionary::isObject() const
88 bool Dictionary::isUndefinedOrNull() const
95 bool Dictionary::hasProperty(const String& key) const
111 bool Dictionary::getKey(const String& key, v8::Local<v8::Value>& value) const
129 bool Dictionary::get(const String& key, v8::Local<v8::Value>& value) const
134 bool Dictionary::get(const String& key, bool& value) const
147 bool Dictionary::convert(ConversionContext& context, const String& key, bool& value) const
154 bool Dictionary::get(const String& key, int32_t& value) const
167 bool Dictionary::get(const String& key, double& value, bool& hasValue) const
183 bool Dictionary::get(const String& key, double& value) const
189 bool Dictionary::convert(ConversionContext& context, const String& key, double& value) const
202 inline bool Dictionary::getStringType(const String& key, StringType& value) const
213 bool Dictionary::get(const String& key, String& value) const
218 bool Dictionary::get(const String& key, AtomicString& value) const
223 bool Dictionary::convert(ConversionContext& context, const String& key, String& value) const
236 bool Dictionary::get(const String& key, ScriptValue& value) const
246 bool Dictionary::convert(ConversionContext& context, const String& key, ScriptValue& value) const
254 bool Dictionary::get(const String& key, unsigned short& value) const
267 bool Dictionary::get(const String& key, short& value) const
280 bool Dictionary::get(const String& key, unsigned& value) const
293 bool Dictionary::get(const String& key, unsigned long& value) const
306 bool Dictionary::get(const String& key, unsigned long long& value) const
320 bool Dictionary::get(const String& key, RefPtrWillBeMember<LocalDOMWindow>& value) const
332 bool Dictionary::get(const String& key, RefPtrWillBeMember<Storage>& value) const
342 bool Dictionary::get(const String& key, MessagePortArray& value) const
357 bool Dictionary::convert(ConversionContext& context, const String& key, MessagePortArray& value) const
368 bool Dictionary::get(const String& key, HashSet<AtomicString>& value) const
390 bool Dictionary::convert(ConversionContext& context, const String& key, HashSet<AtomicString>& value) const
409 bool Dictionary::getWithUndefinedOrNullCheck(const String& key, String& value) const
420 bool Dictionary::get(const String& key, RefPtr<Uint8Array>& value) const
430 bool Dictionary::get(const String& key, RefPtr<ArrayBufferView>& value) const
440 bool Dictionary::get(const String& key, RefPtrWillBeMember<MIDIPort>& value) const
450 bool Dictionary::get(const String& key, RefPtr<MediaKeyError>& value) const
460 bool Dictionary::get(const String& key, RefPtrWillBeMember<TrackBase>& value) const
480 bool Dictionary::get(const String& key, Member<SpeechRecognitionResult>& value) const
490 bool Dictionary::get(const String& key, Member<SpeechRecognitionResultList>& value) const
500 bool Dictionary::get(const String& key, Member<Gamepad>& value) const
510 bool Dictionary::get(const String& key, RefPtr<MediaStream>& value) const
520 bool Dictionary::get(const String& key, RefPtrWillBeMember<EventTarget>& value) const
545 bool Dictionary::get(const String& key, Dictionary& value) const
554 value = Dictionary(v8Value, m_isolate);
560 bool Dictionary::get(const String& key, RefPtr<HeaderMap>& value) const
570 bool Dictionary::convert(ConversionContext& context, const String& key, Dictionary& value) const
584 context.throwTypeError(ExceptionMessages::incorrectPropertyType(key, "does not have a Dictionary type."));
588 bool Dictionary::get(const String& key, Vector<String>& value) const
607 bool Dictionary::convert(ConversionContext& context, const String& key, Vector<String>& value) const
626 bool Dictionary::get(const String& key, ArrayValue& value) const
641 bool Dictionary::convert(ConversionContext& context, const String& key, ArrayValue& value) const
660 bool Dictionary::get(const String& key, RefPtrWillBeMember<DOMError>& value) const
670 bool Dictionary::getOwnPropertiesAsStringHashMap(HashMap<String, String>& hashMap) const
697 bool Dictionary::getOwnPropertyNames(Vector<String>& names) const
720 void Dictionary::ConversionContext::resetPerPropertyContext()
729 Dictionary::ConversionContext& Dictionary::ConversionContext::setConversionType(const String& typeName, bool isNullable)
739 void Dictionary::ConversionContext::throwTypeError(const String& detail)