Searched refs:matchEnd (Results 1 - 9 of 9) sorted by relevance
/third_party/skia/tools/skqp/src/ |
H A D | skqp_main.cpp | 58 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/ |
H A D | CommandLineFlags.cpp | 368 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/ |
H A D | RBBIMonkeyTest.java | 573 int matchEnd = 0; in set() 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/ |
H A D | RBBIMonkeyTest.java | 572 int matchEnd = 0; in set() 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/icu/icu4c/source/test/intltest/ |
H A D | rbbimonkeytest.cpp | 460 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()
|
H A D | ssearch.cpp | 1187 static UBool simpleSearch(UCollator *coll, const UnicodeString &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/java/libphonenumber/src/com/google/i18n/phonenumbers/ |
H A D | PhoneNumberUtil.java | 2940 int matchEnd = m.end(); in parsePrefixAsIdd() 2943 Matcher digitMatcher = CAPTURING_DIGIT_PATTERN.matcher(number.substring(matchEnd)); in parsePrefixAsIdd() 2950 number.delete(0, matchEnd); in parsePrefixAsIdd()
|
/third_party/libphonenumber/javascript/i18n/phonenumbers/ |
H A D | phonenumberutil.js | 3906 var matchEnd = numberStr.match(iddPattern)[0].length; 3908 var matchedGroups = numberStr.substring(matchEnd).match( 3921 number.append(numberStr.substring(matchEnd));
|
/third_party/lz4/lib/ |
H A D | lz4.c | 2288 const BYTE* const matchEnd = match + mlen; in LZ4_decompress_generic() local 2290 if (matchEnd > op) { /* overlap copy */ in LZ4_decompress_generic()
|
Completed in 25 milliseconds