Home | History | Annotate | Download | only in WebView

Lines Matching full:value

34     RefPtr<SerializedScriptValue> value;
43 - (id)initWithValue:(JSValueRef)value context:(JSContextRef)sourceContext exception:(JSValueRef*)exception;
45 ASSERT_ARG(value, value);
48 if (!value || !sourceContext) {
59 _private->value = SerializedScriptValue::create(sourceContext, value, exception);
60 if (!_private->value) {
70 if (!_private || !_private->value)
72 return _private->value->deserialize(destinationContext, 0);