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

  /external/webkit/Source/JavaScriptCore/runtime/
NumberConstructor.cpp 23 #include "NumberConstructor.h"
31 ASSERT_CLASS_FITS_IN_CELL(NumberConstructor);
41 #include "NumberConstructor.lut.h"
45 const ClassInfo NumberConstructor::s_info = { "Function", &InternalFunction::s_info, 0, ExecState::numberTable };
47 /* Source for NumberConstructor.lut.h
57 NumberConstructor::NumberConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, NumberPrototype* numberPrototype)
69 bool NumberConstructor::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot)
71 return getStaticValueSlot<NumberConstructor, InternalFunction>(exec, ExecState::numberTable(exec), this, propertyName, slot);
74 bool NumberConstructor::getOwnPropertyDescriptor(ExecState* exec, const Identifier& propertyName, PropertyDescriptor& des (…)
    [all...]
NumberConstructor.h 30 class NumberConstructor : public InternalFunction {
32 NumberConstructor(ExecState*, JSGlobalObject*, Structure*, NumberPrototype*);
JSGlobalObject.cpp 57 #include "NumberConstructor.h"
221 JSCell* numberConstructor = new (exec) NumberConstructor(exec, this, NumberConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_numberPrototype.get());
242 m_numberPrototype->putDirectFunctionWithoutTransition(exec->globalData(), exec->propertyNames().constructor, numberConstructor, DontEnum);
256 putDirectFunctionWithoutTransition(exec->globalData(), Identifier(exec, "Number"), numberConstructor, DontEnum);

Completed in 213 milliseconds