HomeSort by relevance Sort by last modified time
    Searched refs:DictionaryHelper (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
FileSystemFlags.h 43 DictionaryHelper::get(options, "create", create);
44 DictionaryHelper::get(options, "exclusive", exclusive);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ResponseInit.h 27 DictionaryHelper::get(options, "status", status);
29 DictionaryHelper::get(options, "statusText", statusText);
30 DictionaryHelper::get(options, "headers", headers);
32 DictionaryHelper::get(options, "headers", headersDictionary);
RequestInit.cpp 24 DictionaryHelper::get(options, "method", method);
25 DictionaryHelper::get(options, "headers", headers);
27 DictionaryHelper::get(options, "headers", headersDictionary);
29 DictionaryHelper::get(options, "mode", mode);
30 DictionaryHelper::get(options, "credentials", credentials);
33 if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() || body->IsNull())
Headers.cpp 251 if (DictionaryHelper::get(object, keys[0], keyValuePair)) {
261 if (!DictionaryHelper::get(object, keys[i], keyValuePair)) {
286 if (!DictionaryHelper::get(object, keys[i], value)) {
  /external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
DictionaryHelperForModules.cpp 70 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<MIDIPort>& value);
71 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<SpeechRecognitionResultList>& value);
72 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Gamepad>& value);
73 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<MediaStream>& value);
74 template bool DictionaryHelper::get(const Dictionary&, const String& key, Member<Headers>& value);
76 template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<MIDIPort>& value);
77 template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<SpeechRecognitionResultList>& value);
78 template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<Gamepad>& value);
79 template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<MediaStream>& value);
80 template bool DictionaryHelper::convert(const Dictionary&, Dictionary::ConversionContext&, const String& key, Member<Headers>& va (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geofencing/
CircularGeofencingRegion.cpp 16 DictionaryHelper::get(dictionary, "id", id);
18 DictionaryHelper::get(dictionary, "latitude", region.latitude);
19 DictionaryHelper::get(dictionary, "longitude", region.longitude);
20 DictionaryHelper::get(dictionary, "radius", region.radius);
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
PositionOptions.cpp 25 if (DictionaryHelper::get(options, "enableHighAccuracy", highAccuracy))
30 if (DictionaryHelper::get(options, "maximumAge", maximumAge)) {
41 if (DictionaryHelper::get(options, "timeout", timeout)) {
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
DictionaryHelperForCore.cpp 51 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, v8::Local<v8::Value>& value)
57 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, Dictionary& value)
63 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, bool& value)
77 bool DictionaryHelper::convert(const Dictionary& dictionary, Dictionary::ConversionContext& context, const String& key, bool& value)
80 DictionaryHelper::get(dictionary, key, value);
85 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, int32_t& value)
99 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, double& value, bool& hasValue)
116 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, double& value)
119 return DictionaryHelper::get(dictionary, key, value, unused);
123 bool DictionaryHelper::convert(const Dictionary& dictionary, Dictionary::ConversionContext& context, const String& key, (…)
    [all...]
DictionaryHelperForBindings.h 38 bool DictionaryHelper::get(const Dictionary& dictionary, const String& key, PointerType<T>& value)
49 bool DictionaryHelper::convert(const Dictionary& dictionary, Dictionary::ConversionContext& context, const String& key, PointerType<T>& value)
53 if (!DictionaryHelper::get(dictionary, key, value))
Dictionary.h 152 // DictionaryHelper is a collection of static methods for getting or
154 struct DictionaryHelper {
165 return DictionaryHelper::get(dictionary, key, value);
CustomElementConstructorBuilder.cpp 76 if (DictionaryHelper::get(*m_options, "prototype", prototypeScriptValue) && !prototypeScriptValue.isNull()) {
97 bool extendsProvidedAndNonNull = DictionaryHelper::get(*m_options, "extends", extends) && extends != "null";
  /external/chromium_org/third_party/WebKit/Source/core/animation/
EffectInput.cpp 59 bool frameHasOffset = DictionaryHelper::get(keyframeDictionaryVector[i], "offset", scriptValue) && !scriptValue.isNull();
63 DictionaryHelper::get(keyframeDictionaryVector[i], "offset", offset);
87 DictionaryHelper::get(keyframeDictionaryVector[i], "composite", compositeString);
92 if (DictionaryHelper::get(keyframeDictionaryVector[i], "easing", timingFunctionString)) {
105 DictionaryHelper::get(keyframeDictionaryVector[i], property, value);
TimingInput.cpp 105 DictionaryHelper::get(timingInputDictionary, "delay", startDelay);
109 DictionaryHelper::get(timingInputDictionary, "endDelay", endDelay);
113 DictionaryHelper::get(timingInputDictionary, "fill", fillMode);
117 DictionaryHelper::get(timingInputDictionary, "iterationStart", iterationStart);
121 DictionaryHelper::get(timingInputDictionary, "iterations", iterationCount);
125 if (DictionaryHelper::get(timingInputDictionary, "duration", iterationDuration)) {
130 DictionaryHelper::get(timingInputDictionary, "playbackRate", playbackRate);
134 DictionaryHelper::get(timingInputDictionary, "direction", direction);
138 DictionaryHelper::get(timingInputDictionary, "easing", timingFunctionString);
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/core/
V8TestDictionary.cpp 25 // FIXME: Do not use Dictionary and DictionaryHelper
29 // Dictionary/DictionaryHelper to something that uses ExceptionState.
32 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "booleanMember", booleanMember)) {
39 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "doubleOrNullMember", doubleOrNullMember)) {
46 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "elementOrNullMember", elementOrNullMember)) {
53 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "enumMember", enumMember)) {
65 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "longMember", longMember)) {
72 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "objectMember", objectMember)) {
83 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "objectOrNullMember", objectOrNullMember)) {
94 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "stringArrayMember", stringArrayMember))
    [all...]
V8TestInterfaceEventConstructor.cpp 290 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("DOMString", false), "initializedByEventConstructorReadonlyStringAttribute", eventInit.initializedByEventConstructorReadonlyStringAttribute))
292 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("boolean", false), "initializedByEventConstructorReadonlyBooleanAttribute", eventInit.initializedByEventConstructorReadonlyBooleanAttribute))
294 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("long", false), "initializedByEventConstructorReadonlyLongAttribute", eventInit.initializedByEventConstructorReadonlyLongAttribute))
296 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("Uint8Array", false), "initializedByEventConstructorReadonlyUint8ArrayAttribute", eventInit.initializedByEventConstructorReadonlyUint8ArrayAttribute))
298 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("TestInterfaceEmpty", false), "initializedByEventConstructorReadonlyTestInterfaceEmptyAttribute", eventInit.initializedByEventConstructorReadonlyTestInterfaceEmptyAttribute))
300 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("TestInterfaceEmpty[]", false), "initializedByEventConstructorReadonlyTestInterfaceEmptyArrayAttribute", eventInit.initializedByEventConstructorReadonlyTestInterfaceEmptyArrayAttribute))
302 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("TestInterfaceEmpty", true), "initializedByEventConstructorReadonlyNullableTestInterfaceEmptyAttribute", eventInit.initializedByEventConstructorReadonlyNullableTestInterfaceEmptyAttribute))
304 if (DictionaryHelper::convert(options, conversionContext.setConversionType("DOMString", false), "deprecatedInitializedByEventConstructorReadonlyStringAttribute", eventInit.deprecatedInitializedByEventConstructorReadonlyStringAttribute)) {
310 if (!DictionaryHelper::convert(options, conversionContext.setConversionType("DOMString", false), "implementedAsInitializedByEventConstructorReadonlyStringAttribute", eventInit.implementedAsName))
312 if (DictionaryHelper::convert(options, conversionContext.setConversionType("DOMString", false), "deprecatedImplementedA (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCIceCandidate.cpp 44 bool ok = DictionaryHelper::get(dictionary, "candidate", candidate);
51 DictionaryHelper::get(dictionary, "sdpMid", sdpMid);
54 DictionaryHelper::get(dictionary, "sdpMLineIndex", sdpMLineIndex);
RTCSessionDescription.cpp 53 bool ok = DictionaryHelper::get(descriptionInitDict, "type", type);
60 DictionaryHelper::get(descriptionInitDict, "sdp", sdp);
RTCPeerConnection.cpp 94 if (DictionaryHelper::get(configuration, "iceTransports", iceTransportsString)) {
106 bool ok = DictionaryHelper::get(configuration, "iceServers", iceServers);
135 if (!DictionaryHelper::get(iceServer, "urls", urlStrings) || !urlStrings.size()) {
137 if (DictionaryHelper::get(iceServer, "urls", urlString)) {
146 if (DictionaryHelper::get(iceServer, "url", urlString)) {
158 DictionaryHelper::get(iceServer, "username", username);
159 DictionaryHelper::get(iceServer, "credential", credential);
193 if (DictionaryHelper::get(options, "offerToReceiveVideo", offerToReceiveVideo) && offerToReceiveVideo < 0) {
198 if (DictionaryHelper::get(options, "offerToReceiveAudio", offerToReceiveAudio) && offerToReceiveAudio < 0) {
203 DictionaryHelper::get(options, "voiceActivityDetection", voiceActivityDetection)
    [all...]
MediaConstraintsImpl.cpp 83 bool ok = DictionaryHelper::get(constraintsDictionary, optionalName, optionalConstraints);
103 ok = DictionaryHelper::get(constraint, key, value);
UserMediaRequest.cpp 60 DictionaryHelper::get(options, mediaType, mediaRequested);
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8BlobCustomHelpers.cpp 75 TONATIVE_DEFAULT(bool, containsEndings, DictionaryHelper::get(dictionary, "endings", endings), false);
85 TONATIVE_DEFAULT(bool, containsType, DictionaryHelper::get(dictionary, "type", m_contentType), false);
98 TONATIVE_DEFAULT(bool, containsLastModified, DictionaryHelper::get(dictionary, "lastModified", lastModified), false);
  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
dictionary_v8.cpp 21 // FIXME: Do not use Dictionary and DictionaryHelper
25 // Dictionary/DictionaryHelper to something that uses ExceptionState.
29 if (DictionaryHelper::getWithUndefinedOrNullCheck(dictionary, "{{member.name}}", {{member.name}})) {
  /external/chromium_org/third_party/WebKit/Source/modules/crypto/
NormalizeAlgorithm.cpp 272 if (!DictionaryHelper::get(raw, propertyName, buffer)) {
305 if (!DictionaryHelper::get(raw, propertyName, array) || !array) {
325 if (!DictionaryHelper::get(raw, propertyName, array) || !array) {
336 bool ok = DictionaryHelper::get(raw, propertyName, number, hasProperty);
448 if (!DictionaryHelper::get(raw, "hash", rawHash)) {
688 if (!DictionaryHelper::get(raw, "name", algorithmName)) {
SubtleCrypto.cpp 144 if (!DictionaryHelper::get(source, property, value))
153 if (!DictionaryHelper::get(source, property, value))
180 if (DictionaryHelper::get(dict, "ext", ext))
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.cpp 205 if (DictionaryHelper::get(options, "keyPath", keyPathArray))
210 DictionaryHelper::get(options, "autoIncrement", autoIncrement);

Completed in 470 milliseconds

1 2