HomeSort by relevance Sort by last modified time
    Searched refs:RegExpConstructor (Results 1 - 8 of 8) 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...]
JSGlobalObject.h 47 class RegExpConstructor;
68 WriteBarrier<RegExpConstructor> m_regExpConstructor;
172 RegExpConstructor* regExpConstructor() const { return m_regExpConstructor.get(); }
RegExpObject.cpp 30 #include "RegExpConstructor.h"
135 return exec->lexicalGlobalObject()->regExpConstructor()->arrayOfMatches(exec);
142 RegExpConstructor* regExpConstructor = exec->lexicalGlobalObject()->regExpConstructor();
148 regExpConstructor->performMatch(d->regExp.get(), input, 0, position, length);
171 regExpConstructor->performMatch(d->regExp.get(), input, lastIndex, position, length);
JSGlobalObject.cpp 62 #include "RegExpConstructor.h"
224 m_regExpConstructor.set(exec->globalData(), this, new (exec) RegExpConstructor(exec, this, RegExpConstructor::createStructure(exec->globalData(), m_functionPrototype.get()), m_regExpPrototype.get()));
StringPrototype.cpp 37 #include "RegExpConstructor.h"
318 RegExpConstructor* regExpConstructor = exec->lexicalGlobalObject()->regExpConstructor();
338 regExpConstructor->performMatch(reg, source, startPosition, matchIndex, matchLen, &ovector);
383 regExpConstructor->performMatch(reg, source, startPosition, matchIndex, matchLen, &ovector);
618 RegExpConstructor* regExpConstructor = exec->lexicalGlobalObject()->regExpConstructor();
621 regExpConstructor->performMatch(reg.get(), s, 0, pos, matchLength)
    [all...]
  /external/webkit/Source/JavaScriptCore/
Android.mk 154 runtime/RegExpConstructor.cpp \
227 RegExpConstructor.lut.h \
  /external/v8/src/
regexp.js 81 function RegExpConstructor(pattern, flags) {
407 %SetCode($RegExp, RegExpConstructor);

Completed in 80 milliseconds