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

  /external/webkit/JavaScriptCore/API/
JSClassRef.h 51 : callAsFunction(_callAsFunction), attributes(_attributes)
55 JSObjectCallAsFunctionCallback callAsFunction;
103 JSObjectCallAsFunctionCallback callAsFunction;
JSClassRef.cpp 68 , callAsFunction(definition->callAsFunction)
97 StaticFunctionEntry* entry = new StaticFunctionEntry(staticFunction->callAsFunction, staticFunction->attributes);
181 StaticFunctionEntry* entry = new StaticFunctionEntry(it->second->callAsFunction, it->second->attributes);
JSObjectRef.h 211 @discussion If you named your function CallAsFunction, you would declare it like this:
213 JSValueRef CallAsFunction(JSContextRef ctx, JSObjectRef function, JSObjectRef thisObject, size_t argumentCount, const JSValueRef arguments[], JSValueRef* exception);
301 @field callAsFunction A JSObjectCallAsFunctionCallback to invoke when the property is called as a function.
306 JSObjectCallAsFunctionCallback callAsFunction;
326 @field callAsFunction The callback invoked when an object is called as a function.
360 JSObjectCallAsFunctionCallback callAsFunction;
417 @param callAsFunction The JSObjectCallAsFunctionCallback to invoke when the function is called.
420 JS_EXPORT JSObjectRef JSObjectMakeFunctionWithCallback(JSContextRef ctx, JSStringRef name, JSObjectCallAsFunctionCallback callAsFunction);
    [all...]
JSCallbackObjectFunctions.h 364 if (jsClass->callAsFunction) {
380 if (JSObjectCallAsFunctionCallback callAsFunction = jsClass->callAsFunction) {
389 result = toJS(exec, callAsFunction(execRef, functionRef, thisObjRef, argumentCount, arguments.data(), &exception));
562 if (JSObjectCallAsFunctionCallback callAsFunction = entry->callAsFunction) {
563 JSObject* o = new (exec) JSCallbackFunction(exec, callAsFunction, propertyName);
571 return throwError(exec, ReferenceError, "Static function property defined with NULL callAsFunction callback.");
JSObjectRef.cpp 91 JSObjectRef JSObjectMakeFunctionWithCallback(JSContextRef ctx, JSStringRef name, JSObjectCallAsFunctionCallback callAsFunction)
98 return toRef(new (exec) JSCallbackFunction(exec, callAsFunction, nameID));
  /external/webkit/JavaScriptGlue/
UserObjectImp.h 49 virtual JSValue callAsFunction(ExecState *exec, JSObject *thisObj, const ArgList &args);
JSObject.cpp 79 return static_cast<UserObjectImp*>(functionObject)->callAsFunction(exec, asObject(thisValue), args);
UserObjectImp.cpp 59 JSValue UserObjectImp::callAsFunction(ExecState *exec, JSObject *thisObj, const ArgList &args)

Completed in 3576 milliseconds