Home
last modified time | relevance | path

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

/external/pcre/dist/
Dpcrecpp.cc404 int matchend = start + 1; // advance one character. in GlobalReplace() local
410 if (matchend < static_cast<int>(str->length()) && in GlobalReplace()
411 (*str)[start] == '\r' && (*str)[matchend] == '\n' && in GlobalReplace()
415 matchend++; in GlobalReplace()
420 while (matchend < static_cast<int>(str->length()) && in GlobalReplace()
421 ((*str)[matchend] & 0xc0) == 0x80) in GlobalReplace()
422 matchend++; in GlobalReplace()
426 out.append(*str, start, matchend - start); in GlobalReplace()
427 start = matchend; in GlobalReplace()
436 int matchstart = vec[0], matchend = vec[1]; in GlobalReplace() local
[all …]
/external/regex-re2/util/
Dpcre.cc380 int matchstart = vec[0], matchend = vec[1]; in GlobalReplace() local
382 assert(matchend >= matchstart); in GlobalReplace()
386 start = matchend; in GlobalReplace()
388 last_match_was_empty_string = (matchstart == matchend); in GlobalReplace()
/external/icu/icu4c/source/i18n/
Dusearch.cpp578 int32_t matchend = *end; in checkBreakBoundary() local
581 if (!ubrk_isBoundary(breakiterator, matchend)) { in checkBreakBoundary()
582 *end = ubrk_following(breakiterator, matchend); in checkBreakBoundary()