/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/ |
H A D | StringMatcher.java | 46 private int matchLimit; field in StringMatcher 73 matchStart = matchLimit = -1; in StringMatcher() 137 matchLimit = offset[0]+1; in matches() 168 matchLimit = cursor[0]; in matches() 253 if (matchStart != matchLimit) { in replace() 254 text.copy(matchStart, matchLimit, dest); in replace() 255 outLen = matchLimit - matchStart; in replace() 280 matchStart = matchLimit = -1; in resetMatch() 291 // matchStart and matchLimit. Since this varies depending on the in addReplacementSetTo()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | StringMatcher.java | 47 private int matchLimit; field in StringMatcher 74 matchStart = matchLimit = -1; in StringMatcher() 138 matchLimit = offset[0]+1; in matches() 169 matchLimit = cursor[0]; in matches() 254 if (matchStart != matchLimit) { in replace() 255 text.copy(matchStart, matchLimit, dest); in replace() 256 outLen = matchLimit - matchStart; in replace() 281 matchStart = matchLimit = -1; in resetMatch() 292 // matchStart and matchLimit. Since this varies depending on the in addReplacementSetTo()
|
/third_party/icu/icu4c/source/i18n/ |
H A D | strmatch.cpp | 35 matchLimit(-1) in StringMatcher() 48 matchLimit(o.matchLimit) in StringMatcher() 121 matchLimit = offset+1; in matches() 152 matchLimit = cursor; in matches() 232 if (matchStart != matchLimit) { in replace() 233 text.copy(matchStart, matchLimit, dest); in replace() 234 outLen = matchLimit - matchStart; in replace() 260 matchStart = matchLimit = -1; in resetMatch() 270 // matchStart and matchLimit in addReplacementSetTo() [all...] |
H A D | strmatch.h | 244 int32_t matchLimit; member in StringMatcher
|
H A D | usearch.cpp | 1772 int32_t *matchLimit, in usearch_search() 2082 if (matchLimit != nullptr) { in usearch_search() 2083 *matchLimit = mLimit; in usearch_search() 2092 int32_t *matchLimit, in usearch_searchBackwards() 2383 if (matchLimit != nullptr) { in usearch_searchBackwards() 2384 *matchLimit = mLimit; in usearch_searchBackwards() 1769 usearch_search(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) usearch_search() argument 2089 usearch_searchBackwards(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) usearch_searchBackwards() argument
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | strmatch.cpp | 35 matchLimit(-1) in StringMatcher() 48 matchLimit(o.matchLimit) in StringMatcher() 121 matchLimit = offset+1; in matches() 152 matchLimit = cursor; in matches() 232 if (matchStart != matchLimit) { in replace() 233 text.copy(matchStart, matchLimit, dest); in replace() 234 outLen = matchLimit - matchStart; in replace() 260 matchStart = matchLimit = -1; in resetMatch() 270 // matchStart and matchLimit in addReplacementSetTo() [all...] |
H A D | strmatch.h | 244 int32_t matchLimit; member in StringMatcher
|
H A D | usearch.cpp | 1770 int32_t *matchLimit, in usearch_search() 2080 if (matchLimit != nullptr) { in usearch_search() 2081 *matchLimit = mLimit; in usearch_search() 2090 int32_t *matchLimit, in usearch_searchBackwards() 2381 if (matchLimit != nullptr) { in usearch_searchBackwards() 2382 *matchLimit = mLimit; in usearch_searchBackwards() 1767 usearch_search(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) usearch_search() argument 2087 usearch_searchBackwards(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) usearch_searchBackwards() argument
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | strmatch.cpp | 35 matchLimit(-1) in StringMatcher() 48 matchLimit(o.matchLimit) in StringMatcher() 121 matchLimit = offset+1; in matches() 152 matchLimit = cursor; in matches() 232 if (matchStart != matchLimit) { in replace() 233 text.copy(matchStart, matchLimit, dest); in replace() 234 outLen = matchLimit - matchStart; in replace() 260 matchStart = matchLimit = -1; in resetMatch() 270 // matchStart and matchLimit in addReplacementSetTo() [all...] |
H A D | strmatch.h | 244 int32_t matchLimit; member in StringMatcher
|
H A D | usearch.cpp | 3845 int32_t *matchLimit, in usearch_search() 4135 if (matchLimit != NULL) { in usearch_search() 4136 *matchLimit = mLimit; in usearch_search() 4145 int32_t *matchLimit, in usearch_searchBackwards() 4418 if (matchLimit != NULL) { in usearch_searchBackwards() 4419 *matchLimit = mLimit; in usearch_searchBackwards() 3842 usearch_search(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) usearch_search() argument 4142 usearch_searchBackwards(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) usearch_searchBackwards() argument
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/lang/ |
H A D | UnicodeSetStringSpanTest.java | 230 int matchLimit = start + str.length(); in containsSpanUTF16() 231 if (matchLimit == length) { in containsSpanUTF16() 238 next = matchLimit; // First match from start. in containsSpanUTF16() 240 if (matchLimit < next) { in containsSpanUTF16() 243 next = matchLimit; in containsSpanUTF16() 244 matchLimit = temp; in containsSpanUTF16() 247 int spanLength = containsSpanUTF16(set, s.substring(matchLimit), in containsSpanUTF16() 249 if ((matchLimit + spanLength) > maxSpanLimit) { in containsSpanUTF16() 250 maxSpanLimit = matchLimit + spanLength; in containsSpanUTF16() 257 if (matchLimit > nex in containsSpanUTF16() [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
H A D | UnicodeSetStringSpanTest.java | 227 int matchLimit = start + str.length(); in containsSpanUTF16() 228 if (matchLimit == length) { in containsSpanUTF16() 235 next = matchLimit; // First match from start. in containsSpanUTF16() 237 if (matchLimit < next) { in containsSpanUTF16() 240 next = matchLimit; in containsSpanUTF16() 241 matchLimit = temp; in containsSpanUTF16() 244 int spanLength = containsSpanUTF16(set, s.substring(matchLimit), in containsSpanUTF16() 246 if ((matchLimit + spanLength) > maxSpanLimit) { in containsSpanUTF16() 247 maxSpanLimit = matchLimit + spanLength; in containsSpanUTF16() 254 if (matchLimit > nex in containsSpanUTF16() [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | usettest.cpp | 2564 int32_t matchLimit=start+str->length(); in containsSpanUTF16() local 2565 if(matchLimit==length) { in containsSpanUTF16() 2572 next=matchLimit; // First match from start. in containsSpanUTF16() 2574 if(matchLimit<next) { in containsSpanUTF16() 2577 next=matchLimit; in containsSpanUTF16() 2578 matchLimit=temp; in containsSpanUTF16() 2581 int32_t spanLength=containsSpanUTF16(set, s+matchLimit, length-matchLimit, in containsSpanUTF16() 2583 if((matchLimit+spanLength)>maxSpanLimit) { in containsSpanUTF16() 2584 maxSpanLimit=matchLimit in containsSpanUTF16() 2763 int32_t matchLimit=start+length8; containsSpanUTF8() local [all...] |
/third_party/icu/icu4c/source/i18n/unicode/ |
H A D | usearch.h | 831 * @param matchLimit Out parameter, the index of the first position following the matched text. 832 * The matchLimit will be at a suitable position for beginning a subsequent search 845 int32_t *matchLimit, 891 * @param matchLimit Out parameter, the index of the first position following the matched text. 892 * The matchLimit will be at a suitable position for beginning a subsequent search 905 int32_t *matchLimit,
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | usearch.h | 831 * @param matchLimit Out parameter, the index of the first position following the matched text. 832 * The matchLimit will be at a suitable position for beginning a subsequent search 845 int32_t *matchLimit, 891 * @param matchLimit Out parameter, the index of the first position following the matched text. 892 * The matchLimit will be at a suitable position for beginning a subsequent search 905 int32_t *matchLimit,
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | usearch.h | 830 * @param matchLimit Out parameter, the index of the first position following the matched text. 831 * The matchLimit will be at a suitable position for beginning a subsequent search 844 int32_t *matchLimit, 890 * @param matchLimit Out parameter, the index of the first position following the matched text. 891 * The matchLimit will be at a suitable position for beginning a subsequent search 904 int32_t *matchLimit,
|
/third_party/icu/icu4c/source/common/ |
H A D | ustring.cpp | 43 isMatchAtCPBoundary(const UChar *start, const UChar *match, const UChar *matchLimit, const UChar *limit) { in isMatchAtCPBoundary() argument 48 if(U16_IS_LEAD(*(matchLimit-1)) && matchLimit!=limit && U16_IS_TRAIL(*matchLimit)) { in isMatchAtCPBoundary()
|
/third_party/node/deps/icu-small/source/common/ |
H A D | ustring.cpp | 43 isMatchAtCPBoundary(const char16_t *start, const char16_t *match, const char16_t *matchLimit, const char16_t *limit) { in isMatchAtCPBoundary() argument 48 if(U16_IS_LEAD(*(matchLimit-1)) && matchLimit!=limit && U16_IS_TRAIL(*matchLimit)) { in isMatchAtCPBoundary()
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ustring.cpp | 43 isMatchAtCPBoundary(const UChar *start, const UChar *match, const UChar *matchLimit, const UChar *limit) { in isMatchAtCPBoundary() argument 48 if(U16_IS_LEAD(*(matchLimit-1)) && matchLimit!=limit && U16_IS_TRAIL(*matchLimit)) { in isMatchAtCPBoundary()
|
/third_party/skia/third_party/externals/sfntly/java/lib/ |
H A D | icu4j-4_8_1_1.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/ibm/
com/ibm/icu/
com/ibm/icu/impl/
... |