Searched defs:RegExpObject (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DRegExpObject.cpp22 #include "RegExpObject.h"
46 #include "RegExpObject.lut.h"
50 ASSERT_CLASS_FITS_IN_CELL(RegExpObject);
52 const ClassInfo RegExpObject::s_info = { "RegExp", &JSObjectWithGlobalObject::s_info, 0, ExecState::regExpTable };
54 /* Source for RegExpObject.lut.h
64 RegExpObject::RegExpObject(JSGlobalObject* globalObject, Structure* structure, NonNullPassRefPtr<RegExp> regExp) function in class:JSC::RegExpObject
71 RegExpObject::~RegExpObject()
75 void RegExpObject
[all...]
H A DRegExpObject.h29 class RegExpObject : public JSObjectWithGlobalObject { class in namespace:JSC
33 RegExpObject(JSGlobalObject*, Structure*, NonNullPassRefPtr<RegExp>);
34 virtual ~RegExpObject();
92 RegExpObject* asRegExpObject(JSValue);
94 inline RegExpObject* asRegExpObject(JSValue value)
96 ASSERT(asObject(value)->inherits(&RegExpObject::s_info));
97 return static_cast<RegExpObject*>(asObject(value));

Completed in 164 milliseconds