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

  /external/webkit/JavaScriptCore/runtime/
RegExpConstructor.h 56 class RegExpConstructor : public InternalFunction {
58 RegExpConstructor(ExecState*, NonNullPassRefPtr<Structure>, RegExpPrototype*);
97 RegExpConstructor* asRegExpConstructor(JSValue);
101 inline RegExpConstructor* asRegExpConstructor(JSValue value)
103 ASSERT(asObject(value)->inherits(&RegExpConstructor::info));
104 return static_cast<RegExpConstructor*>(asObject(value));
112 inline void RegExpConstructor::performMatch(RegExp* r, const UString& s, int startOffset, int& position, int& length, int** ovector)
RegExpConstructor.cpp 23 #include "RegExpConstructor.h"
59 #include "RegExpConstructor.lut.h"
63 ASSERT_CLASS_FITS_IN_CELL(RegExpConstructor);
65 const ClassInfo RegExpConstructor::info = { "Function", &InternalFunction::info, 0, ExecState::regExpConstructorTable };
67 /* Source for RegExpConstructor.lut.h
93 RegExpConstructor::RegExpConstructor(ExecState* exec, NonNullPassRefPtr<Structure> structure, RegExpPrototype* regExpPrototype)
147 JSObject* RegExpConstructor::arrayOfMatches(ExecState* exec) const
152 JSValue RegExpConstructor::getBackref(ExecState* exec, unsigned i) const
162 JSValue RegExpConstructor::getLastParen(ExecState* exec) cons
    [all...]
  /external/v8/src/
regexp.js 105 function RegExpConstructor(pattern, flags) {
330 %SetCode($RegExp, RegExpConstructor);

Completed in 111 milliseconds