Home | History | Annotate | Download | only in lang

Lines Matching defs:matchLimit

230                         int matchLimit = start + str.length();
231 if (matchLimit == length) {
238 next = matchLimit; // First match from start.
240 if (matchLimit < next) {
243 next = matchLimit;
244 matchLimit = temp;
247 int spanLength = containsSpanUTF16(set, s.substring(matchLimit),
249 if ((matchLimit + spanLength) > maxSpanLimit) {
250 maxSpanLimit = matchLimit + spanLength;
257 if (matchLimit > next) {
259 next = matchLimit;