Searched defs:RegExpConstructor (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dregexp.js86 function RegExpConstructor(pattern, flags) { function
405 %SetCode($RegExp, RegExpConstructor);
/external/webkit/Source/JavaScriptCore/runtime/
H A DRegExpConstructor.h58 class RegExpConstructor : public InternalFunction { class in namespace:JSC
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)
H A DRegExpConstructor.cpp23 #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) function in class:JSC::RegExpConstructor
154 JSObject* RegExpConstructor::arrayOfMatches(ExecState* exec) const
159 JSValue RegExpConstructor::getBackref(ExecState* exec, unsigned i) const
169 JSValue RegExpConstructor
[all...]

Completed in 93 milliseconds