Searched refs:JSBoundFunction (Results 1 - 5 of 5) sorted by relevance

/macosx-10.9.5/JavaScriptCore-7537.78.1/runtime/
H A DJSBoundFunction.cpp27 #include "JSBoundFunction.h"
35 const ClassInfo JSBoundFunction::s_info = { "Function", &Base::s_info, 0, 0, CREATE_METHOD_TABLE(JSBoundFunction) };
39 JSBoundFunction* boundFunction = jsCast<JSBoundFunction*>(exec->callee());
59 JSBoundFunction* boundFunction = jsCast<JSBoundFunction*>(exec->callee());
77 JSBoundFunction* JSBoundFunction::create(ExecState* exec, JSGlobalObject* globalObject, JSObject* targetFunction, JSValue boundThis, JSValue boundArgs, int length, const String& name)
83 JSBoundFunction* functio
99 JSBoundFunction::JSBoundFunction(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, JSObject* targetFunction, JSValue boundThis, JSValue boundArgs) function in class:JSC::JSBoundFunction
[all...]
H A DJSBoundFunction.h36 class JSBoundFunction : public JSFunction { class in namespace:JSC
40 static JSBoundFunction* create(ExecState*, JSGlobalObject*, JSObject* targetFunction, JSValue boundThis, JSValue boundArgs, int, const String&);
64 JSBoundFunction(ExecState*, JSGlobalObject*, Structure*, JSObject* targetFunction, JSValue boundThis, JSValue boundArgs);
H A DFunctionPrototype.cpp26 #include "JSBoundFunction.h"
210 return JSValue::encode(JSBoundFunction::create(exec, globalObject, targetObject, exec->argument(0), boundArgs, length, name->value(exec)));
H A DJSGlobalObject.cpp52 #include "JSBoundFunction.h"
202 m_boundFunctionStructure.set(exec->vm(), this, JSBoundFunction::createStructure(exec->vm(), this, m_functionPrototype.get()));
/macosx-10.9.5/JavaScriptCore-7537.78.1/interpreter/
H A DInterpreter.cpp47 #include "JSBoundFunction.h"
1421 while (asObject(caller)->inherits(&JSBoundFunction::s_info)) {

Completed in 149 milliseconds