Home
last modified time | relevance | path

Searched refs:matchEnd (Results 1 – 10 of 10) sorted by relevance

/third_party/skia/tools/skqp/src/
Dskqp_main.cpp58 bool matchExclude, matchStart, matchEnd; in should_skip() local
68 if ((matchEnd = matchName[matchLen - 1] == '$')) { in should_skip()
71 if (matchStart ? (!matchEnd || matchLen == testLen) in should_skip()
73 : matchEnd ? matchLen <= testLen in should_skip()
/third_party/skia/tools/flags/
DCommandLineFlags.cpp368 bool matchExclude, matchStart, matchEnd; in ShouldSkipImpl() local
378 if ((matchEnd = matchName[matchLen - 1] == '$')) { in ShouldSkipImpl()
382 ? (!matchEnd || matchLen == testLen) && strncmp(name, matchName, matchLen) == 0 in ShouldSkipImpl()
383 : matchEnd in ShouldSkipImpl()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/
DRBBIMonkeyTest.java573 int matchEnd = 0; in set() local
585 matchEnd = strIdx + rule.fRuleMatcher.end(); in set()
588 … (matchStart < fString.length() && fString.offsetByCodePoints(matchStart, 1) < matchEnd)) { in set()
612 for (int i = matchStart; i < matchEnd; i++) { in set()
634 int updatedStrIdx = fString.offsetByCodePoints(matchEnd, -1); in set()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBIMonkeyTest.java572 int matchEnd = 0; in set() local
584 matchEnd = strIdx + rule.fRuleMatcher.end(); in set()
587 … (matchStart < fString.length() && fString.offsetByCodePoints(matchStart, 1) < matchEnd)) { in set()
611 for (int i = matchStart; i < matchEnd; i++) { in set()
634 int updatedStrIdx = fString.offsetByCodePoints(matchEnd, -1); in set()
/third_party/node/deps/v8/src/builtins/
Dregexp-replace.tq144 const matchEnd: Smi = match.GetEndOfCapture(0);
149 lastMatchEnd = matchEnd;
157 if (matchEnd == matchStart) {
/third_party/icu/icu4c/source/test/intltest/
Drbbimonkeytest.cpp460 int32_t matchEnd = 0; in set() local
473 matchEnd = rule->fRuleMatcher->end(status); in set()
479 if (hasBreak || fString.moveIndex32(matchStart, 1) < matchEnd) { in set()
502 for (int i = matchStart; i < matchEnd; i++) { in set()
533 strIdx = fString.moveIndex32(matchEnd, -1); in set()
Dssearch.cpp1187 …ring &target, int32_t offset, const UnicodeString &pattern, int32_t &matchStart, int32_t &matchEnd) in simpleSearch() argument
1199 matchStart = matchEnd = -1; in simpleSearch()
1204 matchStart = matchEnd = -1; in simpleSearch()
1267 matchEnd = mend; in simpleSearch()
/third_party/libphonenumber/javascript/i18n/phonenumbers/
Dphonenumberutil.js3906 var matchEnd = numberStr.match(iddPattern)[0].length;
3908 var matchedGroups = numberStr.substring(matchEnd).match(
3921 number.append(numberStr.substring(matchEnd));
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/
DPhoneNumberUtil.java2940 int matchEnd = m.end();
2943 Matcher digitMatcher = CAPTURING_DIGIT_PATTERN.matcher(number.substring(matchEnd));
2950 number.delete(0, matchEnd);
/third_party/lz4/lib/
Dlz4.c2288 const BYTE* const matchEnd = match + mlen; in LZ4_decompress_generic() local
2290 if (matchEnd > op) { /* overlap copy */ in LZ4_decompress_generic()