Home
last modified time | relevance | path

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

/external/pcre/pcrecpp/
Dpcrecpp.cc207 int matchend = start + 1; // advance one character. in GlobalReplace() local
213 if (matchend < static_cast<int>(str->length()) && in GlobalReplace()
214 (*str)[start] == '\r' && (*str)[matchend] == '\n' && in GlobalReplace()
216 matchend++; in GlobalReplace()
221 while (matchend < static_cast<int>(str->length()) && in GlobalReplace()
222 ((*str)[matchend] & 0xc0) == 0x80) in GlobalReplace()
223 matchend++; in GlobalReplace()
227 out.append(*str, start, matchend - start); in GlobalReplace()
228 start = matchend; in GlobalReplace()
238 int matchstart = vec[0], matchend = vec[1]; in GlobalReplace() local
[all …]
/external/icu/icu4c/source/i18n/
Dusearch.cpp580 int32_t matchend = *end; in checkBreakBoundary() local
583 if (!ubrk_isBoundary(breakiterator, matchend)) { in checkBreakBoundary()
584 *end = ubrk_following(breakiterator, matchend); in checkBreakBoundary()