Searched refs:decodedValue (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10/JavaScriptCore-7600.1.17/replay/
H A DEncodedValue.h121 static bool decodeValue(EncodedValue& encodedVector, DecodedType& decodedValue) argument
124 decodedValue = Vector<typename EncodingTraits<T>::DecodedType, inlineCapacity, OverflowHandler>(inspectorArray->length());
127 if (!EncodingTraits<T>::decodeValue(encodedElement, decodedValue.at(i)))
144 static JS_EXPORT_PRIVATE EncodedValue encodeValue(const DecodedType& decodedValue);
145 static bool decodeValue(EncodedValue& encodedValue, DecodedType& decodedValue) argument
147 decodedValue = encodedValue.convertTo<DecodedType>();
194 bool EncodedValue::get(const String& key, typename EncodingTraits<T>::DecodedType& decodedValue) argument
200 return EncodingTraits<T>::decodeValue(encodedValue, decodedValue);
204 bool EncodedValue::get(const String& key, std::unique_ptr<typename EncodingTraits<T>::DecodedType>& decodedValue) argument
210 return EncodingTraits<T>::decodeValue(encodedValue, decodedValue);
[all...]
H A DEncodedValue.cpp192 bool EncodedValue::get<EncodedValue>(const String& key, typename EncodingTraits<EncodedValue>::DecodedType& decodedValue) argument
198 decodedValue = EncodedValue(inspectorValue);
/macosx-10.10/WebCore-7600.1.25/replay/
H A DMemoizedDOMResult.h75 bool convertTo(T& decodedValue);
92 static bool decode(EncodedValue& encodedValue, T& decodedValue) argument
94 return EncodingTraits<T>::decodeValue(encodedValue, decodedValue);
H A DSerializationMethods.cpp235 bool EncodingTraits<KeypressCommand>::decodeValue(EncodedValue& encodedValue, KeypressCommand& decodedValue) argument
240 decodedValue = textWasDecoded ? KeypressCommand(commandName, text) : KeypressCommand(commandName);
/macosx-10.10/WebKit2-7600.1.25/Shared/Scrolling/
H A DRemoteScrollingCoordinatorTransaction.cpp172 type decodedValue; \
173 if (!decoder.decode(decodedValue)) \
175 node.setter(decodedValue); \
180 type decodedValue; \
181 if (!decoder.decodeEnum(decodedValue)) \
183 node.setter(decodedValue); \
288 FixedPositionViewportConstraints decodedValue; local
289 if (!decoder.decode(decodedValue))
291 node.updateConstraints(decodedValue);
311 StickyPositionViewportConstraints decodedValue; local
[all...]

Completed in 168 milliseconds