Home | History | Annotate | Download | only in text

Lines Matching refs:matchLength

94 int RegularExpression::match(const String& str, int startFrom, int* matchLength) const
123 if (matchLength)
124 *matchLength = d->lastMatchLength;
138 int matchLength;
139 pos = match(str, start, &matchLength);
141 if (pos + matchLength > lastPos + lastMatchLength) {
144 lastMatchLength = matchLength;
162 int matchLength;
163 index = target.match(string, index, &matchLength);
166 string.replace(index, matchLength, replacement);
168 if (!matchLength)