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

  /external/webkit/Source/JavaScriptCore/runtime/
ErrorConstructor.h 31 class ErrorConstructor : public InternalFunction {
33 ErrorConstructor(ExecState*, JSGlobalObject*, Structure*, ErrorPrototype*);
ErrorConstructor.cpp 22 #include "ErrorConstructor.h"
30 ASSERT_CLASS_FITS_IN_CELL(ErrorConstructor);
32 ErrorConstructor::ErrorConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, ErrorPrototype* errorPrototype)
49 ConstructType ErrorConstructor::getConstructData(ConstructData& constructData)
62 CallType ErrorConstructor::getCallData(CallData& callData)
JSGlobalObject.h 42 class ErrorConstructor;
69 WriteBarrier<ErrorConstructor> m_errorConstructor;
174 ErrorConstructor* errorConstructor() const { return m_errorConstructor.get(); }
JSGlobalObject.cpp 45 #include "ErrorConstructor.h"
226 m_errorConstructor.set(exec->globalData(), this, new (exec) ErrorConstructor(exec, this, ErrorConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), errorPrototype));

Completed in 649 milliseconds