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

  /external/webkit/JavaScriptCore/runtime/
JSGlobalObject.h 48 class RegExpPrototype;
91 , regExpPrototype(0)
130 RegExpPrototype* regExpPrototype;
214 RegExpPrototype* regExpPrototype() const { return d()->regExpPrototype; }
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);
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);

Completed in 100 milliseconds