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

  /external/webkit/JavaScriptCore/runtime/
NativeErrorPrototype.h 28 class NativeErrorPrototype : public JSObject {
30 NativeErrorPrototype(ExecState*, NonNullPassRefPtr<Structure>, const UString& name, const UString& message);
NativeErrorPrototype.cpp 22 #include "NativeErrorPrototype.h"
30 ASSERT_CLASS_FITS_IN_CELL(NativeErrorPrototype);
32 NativeErrorPrototype::NativeErrorPrototype(ExecState* exec, NonNullPassRefPtr<Structure> structure, const UString& name, const UString& message)
NativeErrorConstructor.h 30 class NativeErrorPrototype;
34 NativeErrorConstructor(ExecState*, NonNullPassRefPtr<Structure>, NativeErrorPrototype*);
NativeErrorConstructor.cpp 27 #include "NativeErrorPrototype.h"
35 NativeErrorConstructor::NativeErrorConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, NativeErrorPrototype* nativeErrorPrototype)
36 : InternalFunction(&exec->globalData(), structure, Identifier(exec, nativeErrorPrototype->getDirect(exec->propertyNames().name).getString(exec)))
37 , m_errorStructure(ErrorInstance::createStructure(nativeErrorPrototype))
40 putDirect(exec->propertyNames().prototype, nativeErrorPrototype, DontDelete | ReadOnly | DontEnum);
JSGlobalObject.cpp 57 #include "NativeErrorPrototype.h"
250 RefPtr<Structure> nativeErrorPrototypeStructure = NativeErrorPrototype::createStructure(errorPrototype);
252 NativeErrorPrototype* evalErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "EvalError", "EvalError");
253 NativeErrorPrototype* rangeErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "RangeError", "RangeError");
254 NativeErrorPrototype* referenceErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "ReferenceError", "ReferenceError");
255 NativeErrorPrototype* syntaxErrorPrototype = new (exec) NativeErrorPrototype(exec, nativeErrorPrototypeStructure, "SyntaxError", "SyntaxError")
    [all...]
  /external/webkit/JavaScriptCore/
Android.mk 130 runtime/NativeErrorPrototype.cpp \

Completed in 36 milliseconds