Home
last modified time | relevance | path

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

/external/icu4c/i18n/
Drematch.cpp2906 const UChar *patternChars = litText+stringStartIdx; in MatchAt() local
2907 const UChar *patternEnd = patternChars+stringLen; in MatchAt()
2913 while (patternChars < patternEnd && success) { in MatchAt()
2918 success = (*patternChars == c); in MatchAt()
2919 patternChars += 1; in MatchAt()
2920 } else if (patternChars+1 < patternEnd) { in MatchAt()
2921 … success = (*patternChars == U16_LEAD(c) && *(patternChars+1) == U16_TRAIL(c)); in MatchAt()
2922 patternChars += 2; in MatchAt()
2939 patternChars = litText+stringStartIdx; in MatchAt()
2946 } else if ((U_IS_BMP(c) && *patternChars == c) || in MatchAt()
[all …]
Dcurrpinf.cpp285 const UChar* patternChars = ures_getStringByKeyWithFallback( in setupCurrencyPluralPattern() local
288 UnicodeString* pattern = new UnicodeString(patternChars, ptnLen); in setupCurrencyPluralPattern()
299 UnicodeString negPattern(patternChars, ptnLen); in setupCurrencyPluralPattern()
/external/icu4c/test/intltest/
Dregextst.cpp3280 char *patternChars = NULL, *inputChars = NULL; in regex_find() local
3359 patternChars = new char[patternUTF8Length+1]; in regex_find()
3360 pattern.extract(patternChars, patternUTF8Length+1, UTF8Converter, status); in regex_find()
3361 utext_openUTF8(&patternText, patternChars, patternUTF8Length, &status); in regex_find()
3706 delete[] patternChars; in regex_find()
4294 char *patternChars = NULL; in PerlTestsUTF8() local
4424 … patternLength = pattern.extract(patternChars, patternCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8()
4427 delete[] patternChars; in PerlTestsUTF8()
4429 patternChars = new char[patternCapacity]; in PerlTestsUTF8()
4430 pattern.extract(patternChars, patternCapacity, UTF8Converter.getAlias(), status); in PerlTestsUTF8()
[all …]