Home
last modified time | relevance | path

Searched refs:offsetVector (Results 1 – 3 of 3) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
DRegExp.cpp147 int* offsetVector; in match() local
151 offsetVector = ovector->data(); in match()
154 offsetVector = nonReturnedOvector.data(); in match()
157 ASSERT(offsetVector); in match()
162 offsetVector[j] = -1; in match()
167 …:execute(m_representation->m_regExpJITCode, s.characters(), startOffset, s.length(), offsetVector); in match()
169 matchCompareWithInterpreter(s, startOffset, offsetVector, result); in match()
173 …t(m_representation->m_regExpBytecode.get(), s.characters(), startOffset, s.length(), offsetVector); in match()
189 void RegExp::matchCompareWithInterpreter(const UString& s, int startOffset, int* offsetVector, int … in matchCompareWithInterpreter() argument
210 if ((offsetVector[j] != interpreterOffsetVector[j]) in matchCompareWithInterpreter()
[all …]
DRegExp.h71 …void matchCompareWithInterpreter(const UString&, int startOffset, int* offsetVector, int jitResult…
/external/webkit/Source/WebCore/platform/text/
DRegularExpression.cpp103 int* offsetVector; in match() local
107 offsetVector = nonReturnedOvector.data(); in match()
109 ASSERT(offsetVector); in match()
111 offsetVector[j] = -1; in match()
113 …arr::interpret(d->m_regExpByteCode.get(), str.characters(), startFrom, str.length(), offsetVector); in match()
122 d->lastMatchLength = offsetVector[1] - offsetVector[0]; in match()
125 return offsetVector[0]; in match()