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

/macosx-10.10.1/JavaScriptCore-7600.1.17/runtime/
H A DNumberPrototype.h28 class NumberPrototype : public NumberObject { class in namespace:JSC
32 static NumberPrototype* create(VM& vm, JSGlobalObject* globalObject, Structure* structure)
34 NumberPrototype* prototype = new (NotNull, allocateCell<NumberPrototype>(vm.heap)) NumberPrototype(vm, structure);
51 NumberPrototype(VM&, Structure*);
H A DNumberConstructor.h28 class NumberPrototype;
34 static NumberConstructor* create(VM& vm, Structure* structure, NumberPrototype* numberPrototype)
54 void finishCreation(VM&, NumberPrototype*);
H A DNumberPrototype.cpp23 #include "NumberPrototype.h"
55 #include "NumberPrototype.lut.h"
59 const ClassInfo NumberPrototype::s_info = { "Number", &NumberObject::s_info, 0, ExecState::numberPrototypeTable, CREATE_METHOD_TABLE(NumberPrototype) };
61 /* Source for NumberPrototype.lut.h
73 STATIC_ASSERT_IS_TRIVIALLY_DESTRUCTIBLE(NumberPrototype);
75 NumberPrototype::NumberPrototype(VM& vm, Structure* structure) function in class:JSC::NumberPrototype
80 void NumberPrototype::finishCreation(VM& vm, JSGlobalObject*)
88 bool NumberPrototype
[all...]
H A DNumberConstructor.cpp27 #include "NumberPrototype.h"
63 void NumberConstructor::finishCreation(VM& vm, NumberPrototype* numberPrototype)
65 Base::finishCreation(vm, NumberPrototype::info()->className);
H A DJSGlobalObject.h33 #include "NumberPrototype.h"
386 NumberPrototype* numberPrototype() const { return m_numberPrototype.get(); }

Completed in 132 milliseconds