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

/external/webkit/Source/JavaScriptCore/runtime/
H A DCallData.cpp35 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args) argument
38 return exec->interpreter()->executeCall(exec, asObject(functionObject), callType, callData, thisValue, args);
/external/webkit/Source/WebCore/bindings/js/
H A DJSMainThreadExecState.h45 static JSC::JSValue call(JSC::ExecState* exec, JSC::JSValue functionObject, JSC::CallType callType, const JSC::CallData& callData, JSC::JSValue thisValue, const JSC::ArgList& args) argument
48 return JSC::call(exec, functionObject, callType, callData, thisValue, args);
/external/webkit/Source/WebCore/bindings/v8/
H A DNPV8Object.cpp176 v8::Handle<v8::Value> functionObject = v8NpObject->v8Object->Get(v8::String::New(identifier->value.string)); local
177 if (functionObject.IsEmpty() || functionObject->IsNull()) {
181 if (functionObject->IsUndefined()) {
190 v8::Handle<v8::Function> function = v8::Handle<v8::Function>::Cast(functionObject);
230 v8::Handle<v8::Object> functionObject(v8NpObject->v8Object);
231 if (!functionObject->IsFunction())
235 v8::Handle<v8::Function> function(v8::Function::Cast(*functionObject));
241 resultObject = proxy->callFunction(function, functionObject, argumentCount, argv.get());
/external/webkit/Source/JavaScriptCore/API/tests/
H A Dtestapi.c642 static JSValueRef print_callAsFunction(JSContextRef ctx, JSObjectRef functionObject, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception) argument
644 UNUSED_PARAM(functionObject);

Completed in 195 milliseconds