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

  /external/webkit/Source/JavaScriptCore/runtime/
NumberPrototype.h 28 class NumberPrototype : public NumberObject {
30 NumberPrototype(ExecState*, JSGlobalObject*, Structure*, Structure* functionStructure);
NumberConstructor.h 28 class NumberPrototype;
32 NumberConstructor(ExecState*, JSGlobalObject*, Structure*, NumberPrototype*);
NumberPrototype.cpp 23 #include "NumberPrototype.h"
37 ASSERT_CLASS_FITS_IN_CELL(NumberPrototype);
48 NumberPrototype::NumberPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* functionStructure)
NumberConstructor.cpp 27 #include "NumberPrototype.h"
57 NumberConstructor::NumberConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, NumberPrototype* numberPrototype)
58 : InternalFunction(&exec->globalData(), globalObject, structure, Identifier(exec, numberPrototype->s_info.className))
63 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.h 29 #include "NumberPrototype.h"
86 WriteBarrier<NumberPrototype> m_numberPrototype;
191 NumberPrototype* numberPrototype() const { return m_numberPrototype.get(); }
JSGlobalObject.cpp 58 #include "NumberPrototype.h"
200 m_numberPrototype.set(exec->globalData(), this, new (exec) NumberPrototype(exec, this, NumberPrototype::createStructure(exec->globalData(), m_objectPrototype.get()), m_functionStructure.get()));

Completed in 33 milliseconds