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

/external/webkit/Source/JavaScriptCore/runtime/
H A DDateConstructor.h28 class DatePrototype;
32 DateConstructor(ExecState*, JSGlobalObject*, Structure*, Structure* functionStructure, DatePrototype*);
H A DDatePrototype.h30 class DatePrototype : public DateInstance { class in namespace:JSC
32 DatePrototype(ExecState*, JSGlobalObject*, Structure*);
H A DJSGlobalObject.h40 class DatePrototype;
87 WriteBarrier<DatePrototype> m_datePrototype;
192 DatePrototype* datePrototype() const { return m_datePrototype.get(); }
H A DDatePrototype.cpp25 #include "DatePrototype.h"
74 ASSERT_CLASS_FITS_IN_CELL(DatePrototype);
124 #include "DatePrototype.lut.h"
377 const ClassInfo DatePrototype::s_info = {"Date", &DateInstance::s_info, 0, ExecState::dateTable};
379 /* Source for DatePrototype.lut.h
432 DatePrototype::DatePrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure) function in class:JSC::DatePrototype
441 bool DatePrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
447 bool DatePrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
H A DDateConstructor.cpp27 #include "DatePrototype.h"
60 DateConstructor::DateConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* functionStructure, DatePrototype* datePrototype)
H A DJSGlobalObject.cpp44 #include "DatePrototype.h"
203 m_datePrototype.set(exec->globalData(), this, new (exec) DatePrototype(exec, this, DatePrototype::createStructure(exec->globalData(), m_objectPrototype.get())));

Completed in 112 milliseconds