Home | History | Annotate | Download | only in intltest

Lines Matching full:lookingat

352 //                       for the LookingAt() and  Match() functions.
355 // REGEX_TESTLM("pattern", "input text", lookingAt expected, matches expected);
393 actualmatch = REMatcher->lookingAt(status);
395 errln("RegexTest failure in lookingAt() at line %d. Status = %s\n",
400 errln("RegexTest: wrong return from lookingAt() at line %d.\n", line);
469 actualmatch = REMatcher->lookingAt(status);
471 errln("RegexTest failure in lookingAt() at line %d (UTF8). Status = %s\n",
476 errln("RegexTest: wrong return from lookingAt() at line %d (UTF8).\n", line);
791 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
794 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
798 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
800 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
811 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
875 // lookingAt(pos, status)
879 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
880 REGEX_ASSERT(m1->lookingAt(5, status) == FALSE);
881 REGEX_ASSERT(m1->lookingAt(3, status) == FALSE);
882 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
883 REGEX_ASSERT(m1->lookingAt(-1, status) == FALSE);
887 REGEX_ASSERT(m1->lookingAt(len, status) == FALSE);
889 REGEX_ASSERT(m1->lookingAt(len+1, status) == FALSE);
915 REGEX_ASSERT(matcher->lookingAt(status) == TRUE);
942 matcher->lookingAt(status);
1183 REGEX_ASSERT(m1.lookingAt(status) == TRUE);
1190 REGEX_ASSERT(m2.lookingAt(status) == TRUE);
1197 REGEX_ASSERT(m3.lookingAt(status) == TRUE);
1240 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1250 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1266 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1273 REGEX_ASSERT(matcher.lookingAt(status) == TRUE);
1280 REGEX_ASSERT(matcher.lookingAt(status) == FALSE);
1865 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
1869 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
1874 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
1876 REGEX_ASSERT(m1->lookingAt(status) == FALSE);
1886 REGEX_ASSERT(m1->lookingAt(status) == TRUE);
1947 // lookingAt(pos, status)
1951 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
1952 REGEX_ASSERT(m1->lookingAt(5, status) == FALSE);
1953 REGEX_ASSERT(m1->lookingAt(3, status) == FALSE);
1954 REGEX_ASSERT(m1->lookingAt(4, status) == TRUE);
1955 REGEX_ASSERT(m1->lookingAt(-1, status) == FALSE);
1958 REGEX_ASSERT(m1->lookingAt(input2Len, status) == FALSE);
1960 REGEX_ASSERT(m1->lookingAt(input2Len+1, status) == FALSE);
1996 REGEX_ASSERT(matcher->lookingAt(status) == TRUE);
2023 matcher->lookingAt(status);
2357 REGEX_ASSERT(m1.lookingAt(status) == TRUE);
2366 lookingAt(status) == TRUE);
2375 REGEX_ASSERT(m3.lookingAt(status) == TRUE);
3165 if (commentMat.lookingAt(status)) {
3174 if (quotedStuffMat.lookingAt(status)) {
3187 flagsMat.lookingAt(status); // Will always match, possibly an empty string.
3201 if (quotedStuffMat.lookingAt(status)) {
3213 if (commentMat.lookingAt(status) == FALSE) {
3568 // error on both matches() and lookingAt().
3577 isMatch = matcher->lookingAt(status);
3579 isUTF8Match = UTF8Matcher->lookingAt(status);
4173 else if (groupsMat->lookingAt(status)) {
4191 else if (cgMat->lookingAt(status)) {
4561 else if (groupsMat->lookingAt(status)) {
4579 else if (cgMat->lookingAt(status)) {
5157 REGEX_ASSERT(m->lookingAt(status));