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

  /external/webkit/WebCore/ForwardingHeaders/runtime/
FunctionPrototype.h 3 #include <JavaScriptCore/FunctionPrototype.h>
  /external/webkit/JavaScriptCore/runtime/
FunctionConstructor.h 28 class FunctionPrototype;
32 FunctionConstructor(ExecState*, NonNullPassRefPtr<Structure>, FunctionPrototype*);
FunctionPrototype.h 30 class FunctionPrototype : public InternalFunction {
32 FunctionPrototype(ExecState*, NonNullPassRefPtr<Structure>);
NativeErrorConstructor.h 29 class FunctionPrototype;
InternalFunction.h 32 class FunctionPrototype;
FunctionPrototype.cpp 22 #include "FunctionPrototype.h"
35 ASSERT_CLASS_FITS_IN_CELL(FunctionPrototype);
41 FunctionPrototype::FunctionPrototype(ExecState* exec, NonNullPassRefPtr<Structure> structure)
47 void FunctionPrototype::addFunctionProperties(ExecState* exec, Structure* prototypeFunctionStructure, NativeFunctionWrapper** callFunction, NativeFunctionWrapper** applyFunction)
62 CallType FunctionPrototype::getCallData(CallData& callData)
FunctionConstructor.cpp 25 #include "FunctionPrototype.h"
38 FunctionConstructor::FunctionConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, FunctionPrototype* functionPrototype)
39 : InternalFunction(&exec->globalData(), structure, Identifier(exec, functionPrototype->classInfo()->className))
41 putDirectWithoutTransition(exec->propertyNames().prototype, functionPrototype, DontEnum | DontDelete | ReadOnly);
JSFunction.h 33 class FunctionPrototype;
JSGlobalObject.h 41 class FunctionPrototype;
85 , functionPrototype(0)
124 FunctionPrototype* functionPrototype;
208 FunctionPrototype* functionPrototype() const { return d()->functionPrototype; }
JSGlobalObject.cpp 48 #include "FunctionPrototype.h"
208 d()->functionPrototype = new (exec) FunctionPrototype(exec, FunctionPrototype::createStructure(jsNull())); // The real prototype will be set once ObjectPrototype is created.
209 d()->prototypeFunctionStructure = PrototypeFunction::createStructure(d()->functionPrototype);
212 d()->functionPrototype->addFunctionProperties(exec, d()->prototypeFunctionStructure.get(), &callFunction, &applyFunction);
216 d()->functionPrototype->structure()->setPrototypeWithoutTransition(d()->objectPrototype);
220 d()->functionStructure = JSFunction::createStructure(d()->functionPrototype);
221 d()->callbackFunctionStructure = JSCallbackFunction::createStructure(d()->functionPrototype);
261 JSCell* objectConstructor = new (exec) ObjectConstructor(exec, ObjectConstructor::createStructure(d()->functionPrototype), d()->objectPrototype, d()->prototypeFunctionStructure.get())
    [all...]
  /external/webkit/WebCore/bridge/
runtime_method.h 43 static FunctionPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
45 return globalObject->functionPrototype();
runtime_method.cpp 32 #include <runtime/FunctionPrototype.h>
  /external/v8/src/
accessors.h 37 V(FunctionPrototype) \
accessors.cc 437 // Accessors::FunctionPrototype
475 const AccessorDescriptor Accessors::FunctionPrototype = {
bootstrapper.cc 367 Factory::NewProxy(&Accessors::FunctionPrototype),
    [all...]
  /external/webkit/WebCore/bridge/qt/
qt_runtime.h 147 static FunctionPrototype* createPrototype(ExecState*, JSGlobalObject* globalObject)
149 return globalObject->functionPrototype();
  /external/webkit/JavaScriptCore/
Android.mk 97 runtime/FunctionPrototype.cpp \
  /external/v8/test/cctest/
test-api.cc     [all...]

Completed in 1547 milliseconds