HomeSort by relevance Sort by last modified time
    Searched refs:functionObject (Results 1 - 11 of 11) sorted by null

  /external/webkit/JavaScriptCore/runtime/
CallData.cpp 33 JSValue call(ExecState* exec, JSValue functionObject, CallType callType, const CallData& callData, JSValue thisValue, const ArgList& args)
36 return callData.native.function(exec, asObject(functionObject), thisValue, args);
39 return asFunction(functionObject)->call(exec, thisValue, args);
CallData.h 61 JSValue call(ExecState*, JSValue functionObject, CallType, const CallData&, JSValue thisValue, const ArgList&);
JSObject.cpp 358 JSObject* functionObject = asGetterSetter(value)->getter();
359 if (!functionObject)
361 return functionObject;
377 JSObject* functionObject = asGetterSetter(value)->setter();
378 if (!functionObject)
380 return functionObject;
  /external/webkit/JavaScriptCore/API/
JSCallbackFunction.cpp 51 JSValue JSCallbackFunction::call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args)
54 JSObjectRef functionRef = toRef(functionObject);
66 result = static_cast<JSCallbackFunction*>(functionObject)->m_callback(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception);
JSCallbackObject.h 86 static JSValue JSC_HOST_CALL call(ExecState*, JSObject* functionObject, JSValue thisValue, const ArgList&);
JSCallbackObjectFunctions.h 373 JSValue JSCallbackObject<Base>::call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args)
376 JSObjectRef functionRef = toRef(functionObject);
379 for (JSClassRef jsClass = static_cast<JSCallbackObject<Base>*>(functionObject)->classRef(); jsClass; jsClass = jsClass->parentClass) {
  /external/webkit/JavaScriptGlue/
JSObject.cpp 76 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)
79 return static_cast<UserObjectImp*>(functionObject)->callAsFunction(exec, asObject(thisValue), args);
  /external/webkit/WebCore/bindings/v8/
NPV8Object.cpp 171 v8::Handle<v8::Value> functionObject = v8NpObject->v8Object->Get(v8::String::New(identifier->value.string));
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/WebCore/bridge/qt/
qt_runtime.h 181 static JSValue JSC_HOST_CALL call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args);
202 static JSValue JSC_HOST_CALL call(ExecState* exec, JSObject* functionObject, JSValue thisValue, const ArgList& args);
qt_runtime.cpp     [all...]
  /external/webkit/JavaScriptCore/API/tests/
testapi.c 637 static JSValueRef print_callAsFunction(JSContextRef ctx, JSObjectRef functionObject, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception)
639 UNUSED_PARAM(functionObject);
    [all...]

Completed in 127 milliseconds