Searched refs:startHasProperty (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/common/
H A Duniset_props.cpp896 UChar32 startHasProperty = -1; local
909 if (startHasProperty < 0) {
910 startHasProperty = ch;
912 } else if (startHasProperty >= 0) {
913 add(startHasProperty, ch-1);
914 startHasProperty = -1;
918 if (startHasProperty >= 0) {
919 add((UChar32)startHasProperty, (UChar32)0x10FFFF);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DUnicodeSet.java3230 int startHasProperty = -1;
3244 if (startHasProperty < 0) {
3245 startHasProperty = ch;
3247 } else if (startHasProperty >= 0) {
3248 add_unchecked(startHasProperty, ch-1);
3249 startHasProperty = -1;
3253 if (startHasProperty >= 0) {
3254 add_unchecked(startHasProperty, 0x10FFFF);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeSet.java3303 int startHasProperty = -1;
3317 if (startHasProperty < 0) {
3318 startHasProperty = ch;
3320 } else if (startHasProperty >= 0) {
3321 add_unchecked(startHasProperty, ch-1);
3322 startHasProperty = -1;
3326 if (startHasProperty >= 0) {
3327 add_unchecked(startHasProperty, 0x10FFFF);

Completed in 101 milliseconds