Searched refs:matchLimit (Results 1 - 10 of 10) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DStringMatcher.java47 private int matchLimit; field in class:StringMatcher
74 matchStart = matchLimit = -1;
138 matchLimit = offset[0]+1;
169 matchLimit = cursor[0];
254 if (matchStart != matchLimit) {
255 text.copy(matchStart, matchLimit, dest);
256 outLen = matchLimit - matchStart;
281 matchStart = matchLimit = -1;
292 // matchStart and matchLimit. Since this varies depending on the
/external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DStringMatcher.java46 private int matchLimit; field in class:StringMatcher
73 matchStart = matchLimit = -1;
137 matchLimit = offset[0]+1;
168 matchLimit = cursor[0];
253 if (matchStart != matchLimit) {
254 text.copy(matchStart, matchLimit, dest);
255 outLen = matchLimit - matchStart;
280 matchStart = matchLimit = -1;
291 // matchStart and matchLimit. Since this varies depending on the
/external/icu/icu4c/source/i18n/
H A Dstrmatch.cpp35 matchLimit(-1)
48 matchLimit(o.matchLimit)
121 matchLimit = offset+1;
152 matchLimit = cursor;
232 if (matchStart != matchLimit) {
233 text.copy(matchStart, matchLimit, dest);
234 outLen = matchLimit - matchStart;
260 matchStart = matchLimit = -1;
270 // matchStart and matchLimit
[all...]
H A Dstrmatch.h244 int32_t matchLimit; member in class:StringMatcher
H A Dusearch.cpp3839 int32_t *matchLimit,
4129 if (matchLimit != NULL) {
4130 *matchLimit = mLimit;
4139 int32_t *matchLimit,
4412 if (matchLimit != NULL) {
4413 *matchLimit = mLimit;
3836 usearch_search(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) argument
4136 usearch_searchBackwards(UStringSearch *strsrch, int32_t startIdx, int32_t *matchStart, int32_t *matchLimit, UErrorCode *status) argument
/external/icu/icu4c/source/i18n/unicode/
H A Dusearch.h811 * @param matchLimit Out parameter, the index of the first position following the matched text.
812 * The matchLimit will be at a suitable position for beginning a subsequent search
825 int32_t *matchLimit,
871 * @param matchLimit Out parameter, the index of the first position following the matched text.
872 * The matchLimit will be at a suitable position for beginning a subsequent search
885 int32_t *matchLimit,
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/
H A DUnicodeSetStringSpanTest.java225 int matchLimit = start + str.length();
226 if (matchLimit == length) {
233 next = matchLimit; // First match from start.
235 if (matchLimit < next) {
238 next = matchLimit;
239 matchLimit = temp;
242 int spanLength = containsSpanUTF16(set, s.substring(matchLimit),
244 if ((matchLimit + spanLength) > maxSpanLimit) {
245 maxSpanLimit = matchLimit + spanLength;
252 if (matchLimit > nex
[all...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/
H A DUnicodeSetStringSpanTest.java224 int matchLimit = start + str.length();
225 if (matchLimit == length) {
232 next = matchLimit; // First match from start.
234 if (matchLimit < next) {
237 next = matchLimit;
238 matchLimit = temp;
241 int spanLength = containsSpanUTF16(set, s.substring(matchLimit),
243 if ((matchLimit + spanLength) > maxSpanLimit) {
244 maxSpanLimit = matchLimit + spanLength;
251 if (matchLimit > nex
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dusettest.cpp2525 int32_t matchLimit=start+str->length(); local
2526 if(matchLimit==length) {
2533 next=matchLimit; // First match from start.
2535 if(matchLimit<next) {
2538 next=matchLimit;
2539 matchLimit=temp;
2542 int32_t spanLength=containsSpanUTF16(set, s+matchLimit, length-matchLimit,
2544 if((matchLimit+spanLength)>maxSpanLimit) {
2545 maxSpanLimit=matchLimit
2724 int32_t matchLimit=start+length8; local
[all...]
/external/icu/icu4c/source/common/
H A Dustring.cpp42 isMatchAtCPBoundary(const UChar *start, const UChar *match, const UChar *matchLimit, const UChar *limit) { argument
47 if(U16_IS_LEAD(*(matchLimit-1)) && match!=limit && U16_IS_TRAIL(*matchLimit)) {

Completed in 408 milliseconds