Home
last modified time | relevance | path

Searched refs:resultValue (Results 1 – 7 of 7) sorted by relevance

/external/webkit/WebCore/bridge/jni/jsc/
DJavaInstanceJSC.cpp126 JSValue resultValue; in invokeMethod() local
229 resultValue = jsUndefined(); in invokeMethod()
238resultValue = JavaArray::convertJObjectToArray(exec, result.l, arrayType, rootObject); in invokeMethod()
240resultValue = JavaInstance::create(result.l, rootObject)->createRuntimeObject(exec); in invokeMethod()
242 resultValue = jsUndefined(); in invokeMethod()
248 resultValue = jsBoolean(result.z); in invokeMethod()
254 resultValue = jsNumber(exec, result.b); in invokeMethod()
260 resultValue = jsNumber(exec, result.c); in invokeMethod()
266 resultValue = jsNumber(exec, result.s); in invokeMethod()
272 resultValue = jsNumber(exec, result.i); in invokeMethod()
[all …]
/external/webkit/WebCore/bridge/c/
Dc_instance.cpp141 JSValue resultValue = convertNPVariantToValue(exec, &resultVariant, m_rootObject.get()); in invokeMethod() local
143 return resultValue; in invokeMethod()
176 JSValue resultValue = convertNPVariantToValue(exec, &resultVariant, m_rootObject.get()); in invokeDefaultMethod() local
178 return resultValue; in invokeDefaultMethod()
215 JSValue resultValue = convertNPVariantToValue(exec, &resultVariant, m_rootObject.get()); in invokeConstruct() local
217 return resultValue; in invokeConstruct()
/external/webkit/WebCore/bridge/jni/v8/
DJavaInstanceV8.cpp70 …nce::invokeMethod(const char* methodName, const NPVariant* args, int count, NPVariant* resultValue) in invokeMethod() argument
72 VOID_TO_NPVARIANT(*resultValue); in invokeMethod()
152 convertJValueToNPVariant(result, jMethod->JNIReturnType(), jMethod->returnType(), resultValue); in invokeMethod()
/external/webkit/WebCore/inspector/
DInjectedScript.cpp56 ScriptValue resultValue = function.call(*hadException); in dispatch() local
58 *result = resultValue.serialize(m_injectedScriptObject.scriptState()); in dispatch()
DInspectorFrontend.cpp469 ScriptValue resultValue = ScriptValue::deserialize(scriptState(), result); in didDispatchOnInjectedScript() local
470 function.appendArgument(resultValue); in didDispatchOnInjectedScript()
/external/webkit/JavaScriptGlue/
DJSValueWrapper.cpp169 JSValue resultValue = call(exec, objValue, callType, callData, ksjThisObj, listArgs); in JSObjectCallFunction() local
170 JSValueWrapper* wrapperValue = new JSValueWrapper(resultValue); in JSObjectCallFunction()
/external/skia/src/animator/
DSkScriptTokenizer.cpp988 SkScriptValue2 resultValue; in processLogicalOp() local
989 resultValue.fType = array->getType(); in processLogicalOp()
990 resultValue.fOperand = operand; in processLogicalOp()
991 resultValue.fIsConstant = SkScriptValue2::kVariable; in processLogicalOp()
992 fValueStack.push(resultValue); in processLogicalOp()