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

  /external/webkit/JavaScriptCore/runtime/
NativeErrorConstructor.h 32 class NativeErrorConstructor : public InternalFunction {
34 NativeErrorConstructor(ExecState*, NonNullPassRefPtr<Structure>, NativeErrorPrototype*);
NativeErrorConstructor.cpp 22 #include "NativeErrorConstructor.h"
31 ASSERT_CLASS_FITS_IN_CELL(NativeErrorConstructor);
33 const ClassInfo NativeErrorConstructor::info = { "Function", &InternalFunction::info, 0, 0 };
35 NativeErrorConstructor::NativeErrorConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, NativeErrorPrototype* nativeErrorPrototype)
43 ErrorInstance* NativeErrorConstructor::construct(ExecState* exec, const ArgList& args)
53 return static_cast<NativeErrorConstructor*>(constructor)->construct(exec, args);
56 ConstructType NativeErrorConstructor::getConstructData(ConstructData& constructData)
64 return static_cast<NativeErrorConstructor*>(constructor)->construct(exec, args);
67 CallType NativeErrorConstructor::getCallData(CallData& callData
    [all...]

Completed in 575 milliseconds