Home | History | Annotate | Download | only in lang

Lines Matching defs:matchLimit

227                         int matchLimit = start + str.length();
228 if (matchLimit == length) {
235 next = matchLimit; // First match from start.
237 if (matchLimit < next) {
240 next = matchLimit;
241 matchLimit = temp;
244 int spanLength = containsSpanUTF16(set, s.substring(matchLimit),
246 if ((matchLimit + spanLength) > maxSpanLimit) {
247 maxSpanLimit = matchLimit + spanLength;
254 if (matchLimit > next) {
256 next = matchLimit;