Home | History | Annotate | Download | only in text

Lines Matching refs:matchLength

97 int RegularExpression::match(const String& str, int startFrom, int* matchLength) const
118 if (matchLength)
119 *matchLength = d->lastMatchLength;
133 int matchLength;
134 pos = match(str, start, &matchLength);
136 if (pos + matchLength > lastPos + lastMatchLength) {
139 lastMatchLength = matchLength;
157 int matchLength;
158 index = target.match(string, index, &matchLength);
161 string.replace(index, matchLength, replacement);
163 if (!matchLength)