Home
last modified time | relevance | path

Searched refs:datePrototype (Results 1 – 4 of 4) sorted by relevance

/external/webkit/JavaScriptCore/runtime/
DDateConstructor.cpp61 …ssRefPtr<Structure> structure, Structure* prototypeFunctionStructure, DatePrototype* datePrototype) in DateConstructor() argument
62 …: InternalFunction(&exec->globalData(), structure, Identifier(exec, datePrototype->classInfo()->cl… in DateConstructor()
64 …putDirectWithoutTransition(exec->propertyNames().prototype, datePrototype, DontEnum|DontDelete|Rea… in DateConstructor()
DJSGlobalObject.h90 , datePrototype(0) in JSGlobalObjectData()
129 DatePrototype* datePrototype; member
213 DatePrototype* datePrototype() const { return d()->datePrototype; } in datePrototype() function
DJSGlobalObject.cpp239 …d()->datePrototype = new (exec) DatePrototype(exec, DatePrototype::createStructure(d()->objectProt… in reset()
240 d()->dateStructure = DateInstance::createStructure(d()->datePrototype); in reset()
267 …reateStructure(d()->functionPrototype), d()->prototypeFunctionStructure.get(), d()->datePrototype); in reset()
288 …d()->datePrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, dateCons… in reset()
393 markIfNeeded(markStack, d()->datePrototype); in markChildren()
DJSObject.cpp265 …String) || (hint != PreferNumber && prototype() == exec->lexicalGlobalObject()->datePrototype())) { in defaultValue()