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

/external/webkit/Source/JavaScriptCore/runtime/
H A DFunctionPrototype.h31 void addFunctionProperties(ExecState*, JSGlobalObject*, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction);
H A DFunctionPrototype.cpp46 void FunctionPrototype::addFunctionProperties(ExecState* exec, JSGlobalObject* globalObject, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction) argument
49 *applyFunction = new (exec) JSFunction(exec, globalObject, functionStructure, 2, exec->propertyNames().apply, functionProtoFuncApply);
50 putDirectFunctionWithoutTransition(exec, *applyFunction, DontEnum);
H A DJSGlobalObject.cpp176 JSFunction* applyFunction = 0; local
177 m_functionPrototype->addFunctionProperties(exec, this, m_functionStructure.get(), &callFunction, &applyFunction);
179 m_applyFunction.set(exec->globalData(), this, applyFunction);
H A DJSGlobalObject.h184 JSFunction* applyFunction() const { return m_applyFunction.get(); } function in class:JSC::JSGlobalObject
/external/webkit/Source/JavaScriptCore/bytecompiler/
H A DBytecodeGenerator.cpp939 instructions().append(Instruction(*m_globalData, m_codeBlock->ownerExecutable(), m_scopeChain->globalObject->applyFunction()));

Completed in 362 milliseconds