Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/runtime/
DFunctionPrototype.cpp46 … 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()
DFunctionPrototype.h31 …lobalObject*, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction);
DJSGlobalObject.cpp176 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()
DJSGlobalObject.h184 JSFunction* applyFunction() const { return m_applyFunction.get(); } in applyFunction() function
/external/webkit/Source/JavaScriptCore/bytecompiler/
DBytecodeGenerator.cpp939 …ction(*m_globalData, m_codeBlock->ownerExecutable(), m_scopeChain->globalObject->applyFunction())); in emitJumpIfNotFunctionApply()