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

  /external/webkit/JavaScriptCore/runtime/
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.h 38 class DatePrototype;
90 , datePrototype(0)
129 DatePrototype* datePrototype;
213 DatePrototype* datePrototype() const { return d()->datePrototype; }
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);
JSObject.cpp 27 #include "DatePrototype.h"
265 if ((hint == PreferString) || (hint != PreferNumber && prototype() == exec->lexicalGlobalObject()->datePrototype())) {

Completed in 109 milliseconds