Searched refs:NumberPrototype (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DNumberPrototype.h28 class NumberPrototype : public NumberObject { class in namespace:JSC
30 NumberPrototype(ExecState*, JSGlobalObject*, Structure*, Structure* functionStructure);
H A DNumberConstructor.h28 class NumberPrototype;
32 NumberConstructor(ExecState*, JSGlobalObject*, Structure*, NumberPrototype*);
H A DNumberPrototype.cpp23 #include "NumberPrototype.h"
37 ASSERT_CLASS_FITS_IN_CELL(NumberPrototype);
48 NumberPrototype::NumberPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* functionStructure) function in class:JSC::NumberPrototype
H A DNumberConstructor.cpp27 #include "NumberPrototype.h"
57 NumberConstructor::NumberConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, NumberPrototype* numberPrototype)
H A DJSGlobalObject.h29 #include "NumberPrototype.h"
86 WriteBarrier<NumberPrototype> m_numberPrototype;
191 NumberPrototype* numberPrototype() const { return m_numberPrototype.get(); }
H A DJSGlobalObject.cpp58 #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 75 milliseconds