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

  /external/webkit/JavaScriptCore/runtime/
RegExpObject.h 29 class RegExpObject : public JSObject {
31 RegExpObject(NonNullPassRefPtr<Structure>, NonNullPassRefPtr<RegExp>);
32 virtual ~RegExpObject();
77 RegExpObject* asRegExpObject(JSValue);
79 inline RegExpObject* asRegExpObject(JSValue value)
81 ASSERT(asObject(value)->inherits(&RegExpObject::info));
82 return static_cast<RegExpObject*>(asObject(value));
RegExpObject.cpp 22 #include "RegExpObject.h"
42 #include "RegExpObject.lut.h"
46 ASSERT_CLASS_FITS_IN_CELL(RegExpObject);
48 const ClassInfo RegExpObject::info = { "RegExp", 0, 0, ExecState::regExpTable };
50 /* Source for RegExpObject.lut.h
60 RegExpObject::RegExpObject(NonNullPassRefPtr<Structure> structure, NonNullPassRefPtr<RegExp> regExp)
66 RegExpObject::~RegExpObject()
70 bool RegExpObject::getOwnPropertySlot(ExecState* exec, const Identifier& propertyName, PropertySlot& slot
    [all...]
RegExpPrototype.cpp 34 #include "RegExpObject.h"
63 if (!thisValue.inherits(&RegExpObject::info))
70 if (!thisValue.inherits(&RegExpObject::info))
77 if (!thisValue.inherits(&RegExpObject::info))
84 if (arg0.inherits(&RegExpObject::info)) {
104 if (!thisValue.inherits(&RegExpObject::info)) {
RegExpConstructor.cpp 32 #include "RegExpObject.h"
294 if (arg0.inherits(&RegExpObject::info)) {
306 return new (exec) RegExpObject(exec->lexicalGlobalObject()->regExpStructure(), regExp.release());
StringPrototype.cpp 36 #include "RegExpObject.h"
325 if (pattern.inherits(&RegExpObject::info)) {
577 RegExpObject* imp = 0;
578 if (a0.inherits(&RegExpObject::info))
628 if (a0.inherits(&RegExpObject::info))
680 if (a0.inherits(&RegExpObject::info)) {
    [all...]
JSGlobalObject.cpp 66 #include "RegExpObject.h"
243 d()->regExpStructure = RegExpObject::createStructure(d()->regExpPrototype);
  /external/webkit/JavaScriptCore/
Android.mk 143 runtime/RegExpObject.cpp \
207 RegExpObject.lut.h \
  /external/webkit/WebCore/bridge/qt/
qt_runtime.cpp 38 #include "RegExpObject.h"
137 else if (object->inherits(&RegExpObject::info))
533 RegExpObject *re = static_cast<RegExpObject*>(object);
805 return new (exec) RegExpObject(exec->lexicalGlobalObject()->regExpStructure(), regExp.release());
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITStubs.cpp 55 #include "RegExpObject.h"
    [all...]
  /external/webkit/JavaScriptCore/interpreter/
Interpreter.cpp 57 #include "RegExpObject.h"
    [all...]

Completed in 1682 milliseconds