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

  /external/webkit/JavaScriptCore/runtime/
NumberConstructor.cpp 26 #include "NumberPrototype.h"
56 NumberConstructor::NumberConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, NumberPrototype* numberPrototype)
57 : InternalFunction(&exec->globalData(), structure, Identifier(exec, numberPrototype->info.className))
60 putDirectWithoutTransition(exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.h 29 #include "NumberPrototype.h"
89 , numberPrototype(0)
128 NumberPrototype* numberPrototype;
212 NumberPrototype* numberPrototype() const { return d()->numberPrototype; }
368 return exec->lexicalGlobalObject()->numberPrototype();
JSValue.cpp 99 return exec->lexicalGlobalObject()->numberPrototype();
JSGlobalObject.cpp 59 #include "NumberPrototype.h"
236 d()->numberPrototype = new (exec) NumberPrototype(exec, NumberPrototype::createStructure(d()->objectPrototype), d()->prototypeFunctionStructure.get());
237 d()->numberObjectStructure = NumberObject::createStructure(d()->numberPrototype);
266 JSCell* numberConstructor = new (exec) NumberConstructor(exec, NumberConstructor::createStructure(d()->functionPrototype), d()->numberPrototype);
287 d()->numberPrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, numberConstructor, DontEnum);
392 markIfNeeded(markStack, d()->numberPrototype);

Completed in 71 milliseconds