Searched defs:functionObject (Results 1 - 7 of 7) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
H A DCallData.cpp33 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args) argument
36 return callData.native.function(exec, asObject(functionObject), thisValue, args);
39 return asFunction(functionObject)->call(exec, thisValue, args);
/external/webkit/JavaScriptCore/API/
H A DJSCallbackFunction.cpp51 JSValue JSCallbackFunction::call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args) argument
54 JSObjectRef functionRef = toRef(functionObject);
66 result = static_cast<JSCallbackFunction*>(functionObject)->m_callback(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception);
H A DJSCallbackObjectFunctions.h373 JSValue JSCallbackObject<Base>::call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args) argument
376 JSObjectRef functionRef = toRef(functionObject);
379 for (JSClassRef jsClass = static_cast<JSCallbackObject<Base>*>(functionObject)->classRef(); jsClass; jsClass = jsClass->parentClass) {
/external/webkit/JavaScriptGlue/
H A DJSObject.cpp76 static JSValue JSC_HOST_CALL nativeCallFunction(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args);
77 static JSValue nativeCallFunction(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args) argument
79 return static_cast<UserObjectImp*>(functionObject)->callAsFunction(exec, asObject(thisValue), args);
/external/webkit/WebCore/bindings/v8/
H A DNPV8Object.cpp171 v8::Handle<v8::Value> functionObject = v8NpObject->v8Object->Get(v8::String::New(identifier->value.string)); local
172 if (functionObject.IsEmpty() || functionObject->IsNull()) {
176 if (functionObject->IsUndefined()) {
185 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(functionObject);
224 v8::Handle<v8::Object> functionObject(v8NpObject->v8Object);
225 if (!functionObject->IsFunction())
229 v8::Handle<v8::Function> function(v8::Function::Cast(*functionObject));
235 resultObject = proxy->callFunction(function, functionObject, argumentCount, argv.get());
/external/webkit/JavaScriptCore/API/tests/
H A Dtestapi.c637 static JSValueRef print_callAsFunction(JSContextRef ctx, JSObjectRef functionObject, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
639 UNUSED_PARAM(functionObject);
/external/webkit/WebCore/bridge/qt/
H A Dqt_runtime.cpp1345 JSValue QtRuntimeMetaMethod::call(ExecState* exec, JSObject* functionObject, JSValue, const ArgList& args) argument
1347 QtRuntimeMetaMethodData* d = static_cast<QtRuntimeMetaMethod *>(functionObject)->d_func();
1480 JSValue QtRuntimeConnectionMethod::call(ExecState* exec, JSObject* functionObject, JSValue, const ArgList& args) argument
1482 QtRuntimeConnectionMethodData* d = static_cast<QtRuntimeConnectionMethod *>(functionObject)->d_func();

Completed in 107 milliseconds