Searched defs:throwExceptions (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DScriptValue.cpp103 PassRefPtr<SerializedScriptValue> ScriptValue::serialize(ScriptState* scriptState, SerializationErrorMode throwExceptions) argument
105 return SerializedScriptValue::create(scriptState, jsValue(), throwExceptions);
108 ScriptValue ScriptValue::deserialize(ScriptState* scriptState, SerializedScriptValue* value, SerializationErrorMode throwExceptions) argument
110 return ScriptValue(scriptState->globalData(), value->deserialize(scriptState, scriptState->lexicalGlobalObject(), throwExceptions));
H A DSerializedScriptValue.cpp1341 PassRefPtr<SerializedScriptValue> SerializedScriptValue::create(ExecState* exec, JSValue value, SerializationErrorMode throwExceptions) argument
1345 if (throwExceptions == Throwing)
1389 JSValue SerializedScriptValue::deserialize(ExecState* exec, JSGlobalObject* globalObject, SerializationErrorMode throwExceptions) argument
1392 if (throwExceptions == Throwing)

Completed in 70 milliseconds