Searched refs:applyFunction (Results 1 – 5 of 5) sorted by relevance
/external/webkit/Source/JavaScriptCore/runtime/ |
D | FunctionPrototype.cpp | 46 … globalObject, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction) in addFunctionProperties() argument 49 …*applyFunction = new (exec) JSFunction(exec, globalObject, functionStructure, 2, exec->propertyNam… in addFunctionProperties() 50 putDirectFunctionWithoutTransition(exec, *applyFunction, DontEnum); in addFunctionProperties()
|
D | FunctionPrototype.h | 31 …lobalObject*, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction);
|
D | JSGlobalObject.cpp | 176 JSFunction* applyFunction = 0; in reset() local 177 …otype->addFunctionProperties(exec, this, m_functionStructure.get(), &callFunction, &applyFunction); in reset() 179 m_applyFunction.set(exec->globalData(), this, applyFunction); in reset()
|
D | JSGlobalObject.h | 184 JSFunction* applyFunction() const { return m_applyFunction.get(); } in applyFunction() function
|
/external/webkit/Source/JavaScriptCore/bytecompiler/ |
D | BytecodeGenerator.cpp | 939 …ction(*m_globalData, m_codeBlock->ownerExecutable(), m_scopeChain->globalObject->applyFunction())); in emitJumpIfNotFunctionApply()
|