Home | History | Annotate | Download | only in intltest

Lines Matching refs:lookingAt

381 //                       for the LookingAt() and  Match() functions.
384 // REGEX_TESTLM("pattern", "input text", lookingAt expected, matches expected);
422 actualmatch = REMatcher->lookingAt(status);
424 errln("RegexTest failure in lookingAt() at line %d. Status = %s\n",
429 errln("RegexTest: wrong return from lookingAt() at line %d.\n", line);
498 actualmatch = REMatcher->lookingAt(status);
500 errln("RegexTest failure in lookingAt() at line %d (UTF8). Status = %s\n",
505 errln("RegexTest: wrong return from lookingAt() at line %d (UTF8).\n", line);
820 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
823 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
827 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
829 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
840 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
904 // lookingAt(pos, status)
908 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
909 REGEX_ASSERT(m1->lookingAt(5, status) == FALSE);
910 REGEX_ASSERT(m1->lookingAt(3, status) == FALSE);
911 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
912 REGEX_ASSERT(m1->lookingAt(-1, status) == FALSE);
916 REGEX_ASSERT(m1->lookingAt(len, status) == FALSE);
918 REGEX_ASSERT(m1->lookingAt(len+1, status) == FALSE);
944 REGEX_ASSERT(matcher->lookingAt(status) == TRUE);
971 matcher->lookingAt(status);
1212 REGEX_ASSERT(m1.lookingAt(status) == TRUE);
1219 REGEX_ASSERT(m2.lookingAt(status) == TRUE);
1226 REGEX_ASSERT(m3.lookingAt(status) == TRUE);
1269 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1279 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1295 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1302 REGEX_ASSERT(matcher.lookingAt(status) == TRUE);
1309 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1894 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
1898 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
1903 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
1905 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
1915 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
1976 // lookingAt(pos, status)
1980 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
1981 REGEX_ASSERT(m1->lookingAt(5, status) == FALSE);
1982 REGEX_ASSERT(m1->lookingAt(3, status) == FALSE);
1983 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
1984 REGEX_ASSERT(m1->lookingAt(-1, status) == FALSE);
1987 REGEX_ASSERT(m1->lookingAt(input2Len, status) == FALSE);
1989 REGEX_ASSERT(m1->lookingAt(input2Len+1, status) == FALSE);
2025 REGEX_ASSERT(matcher->lookingAt(status) == TRUE);
2052 matcher->lookingAt(status);
2411 REGEX_ASSERT(m1.lookingAt(status) == TRUE);
2420 REGEX_ASSERT(m2.lookingAt(status) == TRUE);
2429 REGEX_ASSERT(m3.lookingAt(status) == TRUE);
3252 if (commentMat.lookingAt(status)) {
3261 if (quotedStuffMat.lookingAt(status)) {
3274 flagsMat.lookingAt(status); // Will always match, possibly an empty string.
3288 if (quotedStuffMat.lookingAt(status)) {
3300 if (commentMat.lookingAt(status) == FALSE) {
3658 // error on both matches() and lookingAt().
3667 isMatch = matcher->lookingAt(status);
3669 isUTF8Match = UTF8Matcher->lookingAt(status);
4267 else if (groupsMat->lookingAt(status)) {
4285 else if (cgMat->lookingAt(status)) {
4655 else if (groupsMat->lookingAt(status)) {
4673 else if (cgMat->lookingAt(status)) {
5544 REGEX_ASSERT(m->lookingAt(status));
5818 REGEX_ASSERT(matcher.lookingAt(0, status));