RegExpConstructor.h | 45 const Vector<int, 32>& lastOvector() const { return ovector[lastOvectorIndex]; } 46 Vector<int, 32>& lastOvector() { return ovector[lastOvectorIndex]; } 47 Vector<int, 32>& tempOvector() { return ovector[lastOvectorIndex ? 0 : 1]; } 52 Vector<int, 32> ovector[2]; member in struct:JSC::RegExpConstructorPrivate 73 void performMatch(RegExp*, const UString&, int startOffset, int& position, int& length, int** ovector = 0); 112 ALWAYS_INLINE void RegExpConstructor::performMatch(RegExp* r, const UString& s, int startOffset, int& position, int& length, int** ovector) 116 if (ovector) 117 *ovector = d->tempOvector().data();
|