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

  /external/webkit/Source/JavaScriptCore/runtime/
FunctionPrototype.h 31 void addFunctionProperties(ExecState*, JSGlobalObject*, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction);
FunctionPrototype.cpp 46 void FunctionPrototype::addFunctionProperties(ExecState* exec, JSGlobalObject* globalObject, Structure* functionStructure, JSFunction** callFunction, JSFunction** applyFunction)
49 *applyFunction = new (exec) JSFunction(exec, globalObject, functionStructure, 2, exec->propertyNames().apply, functionProtoFuncApply);
50 putDirectFunctionWithoutTransition(exec, *applyFunction, DontEnum);
JSGlobalObject.cpp 176 JSFunction* applyFunction = 0;
177 m_functionPrototype->addFunctionProperties(exec, this, m_functionStructure.get(), &callFunction, &applyFunction);
179 m_applyFunction.set(exec->globalData(), this, applyFunction);
JSGlobalObject.h 184 JSFunction* applyFunction() const { return m_applyFunction.get(); }
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp     [all...]

Completed in 544 milliseconds