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

  /external/webkit/Source/JavaScriptCore/runtime/
RegExpConstructor.h 58 class RegExpConstructor : public InternalFunction {
60 RegExpConstructor(ExecState*, JSGlobalObject*, Structure*, RegExpPrototype*);
97 RegExpConstructor* asRegExpConstructor(JSValue);
101 inline RegExpConstructor* asRegExpConstructor(JSValue value)
103 ASSERT(asObject(value)->inherits(&RegExpConstructor::s_info));
104 return static_cast<RegExpConstructor*>(asObject(value));
112 ALWAYS_INLINE void RegExpConstructor::performMatch(RegExp* r, const UString& s, int startOffset, int& position, int& length, int** ovector)
RegExpConstructor.cpp 23 #include "RegExpConstructor.h"
64 #include "RegExpConstructor.lut.h"
68 ASSERT_CLASS_FITS_IN_CELL(RegExpConstructor);
70 const ClassInfo RegExpConstructor::s_info = { "Function", &InternalFunction::s_info, 0, ExecState::regExpConstructorTable };
72 /* Source for RegExpConstructor.lut.h
98 RegExpConstructor::RegExpConstructor(ExecState* exec, JSGlobalObject* globalObject, Structure* structure, RegExpPrototype* regExpPrototype)
154 JSObject* RegExpConstructor::arrayOfMatches(ExecState* exec) const
159 JSValue RegExpConstructor::getBackref(ExecState* exec, unsigned i) const
169 JSValue RegExpConstructor::getLastParen(ExecState* exec) cons
    [all...]
  /external/v8/src/
regexp.js 86 function RegExpConstructor(pattern, flags) {
405 %SetCode($RegExp, RegExpConstructor);

Completed in 47 milliseconds