Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Duniset.cpp661 int32_t highWaterLength = 0; in matches() local
690 if (matchLen > highWaterLength) { in matches()
691 highWaterLength = matchLen; in matches()
695 if (forward && matchLen < highWaterLength) { in matches()
704 if (highWaterLength != 0) { in matches()
705 offset += forward ? highWaterLength : -highWaterLength; in matches()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DUnicodeSet.java919 int highWaterLength = 0; in matches()
946 if (length > highWaterLength) { in matches()
947 highWaterLength = length; in matches()
951 if (forward && length < highWaterLength) { in matches()
960 if (highWaterLength != 0) { in matches()
961 offset[0] += forward ? highWaterLength : -highWaterLength; in matches()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DUnicodeSet.java945 int highWaterLength = 0; in matches()
972 if (length > highWaterLength) { in matches()
973 highWaterLength = length; in matches()
977 if (forward && length < highWaterLength) { in matches()
986 if (highWaterLength != 0) { in matches()
987 offset[0] += forward ? highWaterLength : -highWaterLength; in matches()