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

  /external/webkit/JavaScriptCore/runtime/
DateConstructor.h 28 class DatePrototype;
32 DateConstructor(ExecState*, NonNullPassRefPtr<Structure>, Structure* prototypeFunctionStructure, DatePrototype*);
DatePrototype.h 30 class DatePrototype : public DateInstance {
32 DatePrototype(ExecState*, NonNullPassRefPtr<Structure>);
JSGlobalObject.h 38 class DatePrototype;
90 , datePrototype(0)
129 DatePrototype* datePrototype;
213 DatePrototype* datePrototype() const { return d()->datePrototype; }
DatePrototype.cpp 24 #include "DatePrototype.h"
71 ASSERT_CLASS_FITS_IN_CELL(DatePrototype);
122 #include "DatePrototype.lut.h"
343 const ClassInfo DatePrototype::info = {"Date", &DateInstance::info, 0, ExecState::dateTable};
345 /* Source for DatePrototype.lut.h
398 DatePrototype::DatePrototype(ExecState* exec, NonNullPassRefPtr<Structure> structure)
404 bool DatePrototype::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
410 bool DatePrototype::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& descriptor)
    [all...]
DateConstructor.cpp 27 #include "DatePrototype.h"
61 DateConstructor::DateConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, Structure* prototypeFunctionStructure, DatePrototype* datePrototype)
62 : InternalFunction(&exec->globalData(), structure, Identifier(exec, datePrototype->classInfo()->className))
64 putDirectWithoutTransition(exec->propertyNames().prototype, datePrototype, DontEnum|DontDelete|ReadOnly);
JSGlobalObject.cpp 44 #include "DatePrototype.h"
239 d()->datePrototype = new (exec) DatePrototype(exec, DatePrototype::createStructure(d()->objectPrototype));
240 d()->dateStructure = DateInstance::createStructure(d()->datePrototype);
267 JSCell* dateConstructor = new (exec) DateConstructor(exec, DateConstructor::createStructure(d()->functionPrototype), d()->prototypeFunctionStructure.get(), d()->datePrototype);
288 d()->datePrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, dateConstructor, DontEnum);
393 markIfNeeded(markStack, d()->datePrototype);
  /external/webkit/JavaScriptCore/
Android.mk 89 runtime/DatePrototype.cpp \
202 DatePrototype.lut.h \

Completed in 53 milliseconds