Searched refs:patText (Results 1 – 6 of 6) sorted by relevance
/external/icu/icu4c/source/i18n/ |
D | uregex.cpp | 148 UText patText = UTEXT_INITIALIZER; in uregex_open() local 149 utext_openUChars(&patText, patBuf, patternLength, status); in uregex_open() 155 re->fPat = RegexPattern::compile(&patText, flags, *pe, *status); in uregex_open() 157 re->fPat = RegexPattern::compile(&patText, flags, *status); in uregex_open() 159 utext_close(&patText); in uregex_open() 231 UText patText = UTEXT_INITIALIZER; in uregex_openUText() local 232 utext_openUChars(&patText, patBuf, pattern16Length, status); in uregex_openUText() 238 re->fPat = RegexPattern::compile(&patText, flags, *pe, *status); in uregex_openUText() 240 re->fPat = RegexPattern::compile(&patText, flags, *status); in uregex_openUText() 242 utext_close(&patText); in uregex_openUText()
|
D | usearch.cpp | 3488 const UChar * patText = ss->pattern.text; in CEIBuffer() local 3489 if (patText) { in CEIBuffer() 3490 const UChar * patTextLimit = patText + ss->pattern.textLength; in CEIBuffer() 3491 while ( patText < patTextLimit ) { in CEIBuffer() 3492 UChar c = *patText++; in CEIBuffer()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | TimeZoneGenericNames.java | 450 String patText; in formatPattern() local 454 patText = bundle.getStringWithFallback("zoneStrings/" + pat.key()); in formatPattern() 456 patText = pat.defaultValue(); in formatPattern() 459 _patternFormatters[idx] = new MessageFormat(patText); in formatPattern()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | TimeZoneGenericNames.java | 448 String patText; in formatPattern() local 452 patText = bundle.getStringWithFallback("zoneStrings/" + pat.key()); in formatPattern() 454 patText = pat.defaultValue(); in formatPattern() 457 _patternFormatters[idx] = new MessageFormat(patText); in formatPattern()
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | StringSearch.java | 1946 String patText = ss.pattern_.text_; in CEBuffer() local 1947 if (patText != null) { in CEBuffer() 1948 for (int i = 0; i < patText.length(); i++) { in CEBuffer() 1949 char c = patText.charAt(i); in CEBuffer()
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
D | StringSearch.java | 1962 String patText = ss.pattern_.text_; in CEBuffer() local 1963 if (patText != null) { in CEBuffer() 1964 for (int i = 0; i < patText.length(); i++) { in CEBuffer() 1965 char c = patText.charAt(i); in CEBuffer()
|