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

  /external/webkit/JavaScriptCore/runtime/
FunctionPrototype.h 33 void addFunctionProperties(ExecState*, Structure* prototypeFunctionStructure, NativeFunctionWrapper** callFunction, NativeFunctionWrapper** applyFunction);
FunctionPrototype.cpp 47 void FunctionPrototype::addFunctionProperties(ExecState* exec, Structure* prototypeFunctionStructure, NativeFunctionWrapper** callFunction, NativeFunctionWrapper** applyFunction)
50 *applyFunction = new (exec) NativeFunctionWrapper(exec, prototypeFunctionStructure, 2, exec->propertyNames().apply, functionProtoFuncApply);
51 putDirectFunctionWithoutTransition(exec, *applyFunction, DontEnum);
JSGlobalObject.cpp 211 NativeFunctionWrapper* applyFunction = 0;
212 d()->functionPrototype->addFunctionProperties(exec, d()->prototypeFunctionStructure.get(), &callFunction, &applyFunction);
214 d()->applyFunction = applyFunction;
385 markIfNeeded(markStack, d()->applyFunction);
JSGlobalObject.h 83 , applyFunction(0)
121 NativeFunctionWrapper* applyFunction;
  /external/webkit/JavaScriptCore/bytecompiler/
BytecodeGenerator.cpp 800 instructions().append(m_scopeChain->globalObject()->d()->applyFunction);
    [all...]

Completed in 59 milliseconds