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

  /external/webkit/Source/JavaScriptCore/runtime/
NativeErrorPrototype.h 27 class NativeErrorConstructor;
31 NativeErrorPrototype(ExecState*, JSGlobalObject*, Structure*, const UString&, NativeErrorConstructor*);
NativeErrorConstructor.cpp 22 #include "NativeErrorConstructor.h"
31 ASSERT_CLASS_FITS_IN_CELL(NativeErrorConstructor);
33 const ClassInfo NativeErrorConstructor::s_info = { "Function", &InternalFunction::s_info, 0, 0 };
35 NativeErrorConstructor::NativeErrorConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, Structure* prototypeStructure, const UString& nameAndMessage)
49 void NativeErrorConstructor::markChildren(MarkStack& markStack)
59 Structure* errorStructure = static_cast<NativeErrorConstructor*>(exec->callee())->errorStructure();
64 ConstructType NativeErrorConstructor::getConstructData(ConstructData& constructData)
73 Structure* errorStructure = static_cast<NativeErrorConstructor*>(exec->callee())->errorStructure();
77 CallType NativeErrorConstructor::getCallData(CallData& callData
    [all...]
NativeErrorConstructor.h 32 class NativeErrorConstructor : public InternalFunction {
34 NativeErrorConstructor(ExecState*, JSGlobalObject*, Structure*, Structure* prototypeStructure, const UString&);
NativeErrorPrototype.cpp 27 #include "NativeErrorConstructor.h"
34 NativeErrorPrototype::NativeErrorPrototype(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, const UString& nameAndMessage, NativeErrorConstructor* constructor)
JSGlobalObject.h 45 class NativeErrorConstructor;
70 WriteBarrier<NativeErrorConstructor> m_evalErrorConstructor;
71 WriteBarrier<NativeErrorConstructor> m_rangeErrorConstructor;
72 WriteBarrier<NativeErrorConstructor> m_referenceErrorConstructor;
73 WriteBarrier<NativeErrorConstructor> m_syntaxErrorConstructor;
74 WriteBarrier<NativeErrorConstructor> m_typeErrorConstructor;
75 WriteBarrier<NativeErrorConstructor> m_URIErrorConstructor;
175 NativeErrorConstructor* evalErrorConstructor() const { return m_evalErrorConstructor.get(); }
176 NativeErrorConstructor* rangeErrorConstructor() const { return m_rangeErrorConstructor.get(); }
177 NativeErrorConstructor* referenceErrorConstructor() const { return m_referenceErrorConstructor.get();
    [all...]
JSGlobalObject.cpp 55 #include "NativeErrorConstructor.h"
229 Structure* nativeErrorStructure = NativeErrorConstructor::createStructure(exec->globalData(), m_functionPrototype.get());
230 m_evalErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "EvalError"));
231 m_rangeErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "RangeError"));
232 m_referenceErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "ReferenceError"));
233 m_syntaxErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "SyntaxError"));
234 m_typeErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "TypeError"));
235 m_URIErrorConstructor.set(exec->globalData(), this, new (exec) NativeErrorConstructor(exec, this, nativeErrorStructure, nativeErrorPrototypeStructure, "URIError"));

Completed in 802 milliseconds