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

  /external/webkit/JavaScriptCore/runtime/
RegExpPrototype.h 28 class RegExpPrototype : public JSObject {
30 RegExpPrototype(ExecState*, NonNullPassRefPtr<Structure>, Structure* prototypeFunctionStructure);
RegExpPrototype.cpp 22 #include "RegExpPrototype.h"
39 ASSERT_CLASS_FITS_IN_CELL(RegExpPrototype);
48 const ClassInfo RegExpPrototype::info = { "RegExpPrototype", 0, 0, 0 };
50 RegExpPrototype::RegExpPrototype(ExecState* exec, NonNullPassRefPtr<Structure> structure, Structure* prototypeFunctionStructure)
105 if (thisValue.inherits(&RegExpPrototype::info))
RegExpConstructor.h 31 class RegExpPrototype;
58 RegExpConstructor(ExecState*, NonNullPassRefPtr<Structure>, RegExpPrototype*);
JSGlobalObject.h 48 class RegExpPrototype;
91 , regExpPrototype(0)
130 RegExpPrototype* regExpPrototype;
214 RegExpPrototype* regExpPrototype() const { return d()->regExpPrototype; }
RegExpConstructor.cpp 33 #include "RegExpPrototype.h"
93 RegExpConstructor::RegExpConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, RegExpPrototype* regExpPrototype)
98 putDirectWithoutTransition(exec->propertyNames().prototype, regExpPrototype, DontEnum | DontDelete | ReadOnly);
JSGlobalObject.cpp 67 #include "RegExpPrototype.h"
242 d()->regExpPrototype = new (exec) RegExpPrototype(exec, RegExpPrototype::createStructure(d()->objectPrototype), d()->prototypeFunctionStructure.get());
243 d()->regExpStructure = RegExpObject::createStructure(d()->regExpPrototype);
269 d()->regExpConstructor = new (exec) RegExpConstructor(exec, RegExpConstructor::createStructure(d()->functionPrototype), d()->regExpPrototype);
289 d()->regExpPrototype->putDirectFunctionWithoutTransition(exec->propertyNames().constructor, d()->regExpConstructor, DontEnum);
394 markIfNeeded(markStack, d()->regExpPrototype);
  /external/webkit/JavaScriptCore/
Android.mk 144 runtime/RegExpPrototype.cpp \

Completed in 114 milliseconds