Home | History | Annotate | Download | only in intltest

Lines Matching refs:hitEnd

1145     // hitEnd() and requireEnd()
1152 REGEX_ASSERT(m1.hitEnd() == TRUE);
1159 REGEX_ASSERT(m2.hitEnd() == FALSE);
1166 REGEX_ASSERT(m3.hitEnd() == TRUE);
2338 // hitEnd() and requireEnd()
2351 REGEX_ASSERT(m1.hitEnd() == TRUE);
2360 REGEX_ASSERT(m2.hitEnd() == FALSE);
2369 REGEX_ASSERT(m3.hitEnd() == TRUE);
3719 if ((flags.indexOf((UChar)0x5A) >= 0) && // 'Z' flag: hitEnd() == false
3720 matcher->hitEnd() == TRUE) {
3721 errln("Error at line %d: hitEnd() returned TRUE. Expected FALSE", line);
3723 } else if (UTF8Matcher != NULL && (flags.indexOf((UChar)0x5A) >= 0) && // 'Z' flag: hitEnd() == false
3724 UTF8Matcher->hitEnd() == TRUE) {
3725 errln("Error at line %d: hitEnd() returned TRUE. Expected FALSE (UTF8)", line);
3729 if ((flags.indexOf((UChar)0x7A) >= 0) && // 'z' flag: hitEnd() == true
3730 matcher->hitEnd() == FALSE) {
3731 errln("Error at line %d: hitEnd() returned FALSE. Expected TRUE", line);
3733 } else if (UTF8Matcher != NULL && (flags.indexOf((UChar)0x7A) >= 0) && // 'z' flag: hitEnd() == true
3734 UTF8Matcher->hitEnd() == FALSE) {
3735 errln("Error at line %d: hitEnd() returned FALSE. Expected TRUE (UTF8)", line);