Lines Matching refs:RegexMatcher
400 RegexMatcher *REMatcher = NULL; in doRegexLMTest()
463 RegexMatcher *REMatcher = NULL; in doRegexLMTestUTF8()
616 … RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status); in Basic()
761 RegexMatcher matcher(&pattern, 0, status); in UTextBasic()
818 RegexMatcher *m1 = pat2->matcher(inStr1, status); in API_Match()
891 RegexMatcher m("A?", 0, status); // will match zero length string. in API_Match()
942 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
1002 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
1056 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
1080 … RegexMatcher m("(?= ?)", 0, status); // This pattern will zero-length matches anywhere, in API_Match()
1113 RegexMatcher m(".?", 0, status); in API_Match()
1134 RegexMatcher m(".?", 0, status); in API_Match()
1143 RegexMatcher *m = p->matcher(status); in API_Match()
1158 RegexMatcher m(".*", testString, 0, status); in API_Match()
1211 RegexMatcher m1(".*", testString, 0, status); in API_Match()
1218 RegexMatcher m2("a*", testString, 0, status); in API_Match()
1225 RegexMatcher m3(".*$", testString, 0, status); in API_Match()
1243 RegexMatcher m(".", 0, status); in API_Match()
1247 RegexMatcher *m2 = p->matcher(ucharString, status); // should not compile. in API_Match()
1249 RegexMatcher m3(".", ucharString, 0, status); // Should not compile in API_Match()
1264 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match()
1276 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match()
1292 RegexMatcher matcher("(A)+A$", testString, 0, status); in API_Match()
1319 RegexMatcher matcher("abc", testString, 0, status); in API_Match()
1363 RegexMatcher *matcher = pat->matcher(data, status); in API_Replace()
1435 RegexMatcher *matcher2 = pat2->matcher(d5, status); in API_Replace()
1487 RegexMatcher m("ss(.*?)ee", 0, status); in API_Replace()
1603 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern()
1835 RegexMatcher *m = pat1->matcher(Hello, status); in API_Pattern()
1837 REGEX_ASSERT(m->getDynamicClassID() == RegexMatcher::getStaticClassID()); in API_Pattern()
1892 RegexMatcher *m1 = &pat2->matcher(status)->reset(&input1); in API_Match_UTF8()
1964 RegexMatcher m("A?", 0, status); // will match zero length string. in API_Match_UTF8()
2023 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2168 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2230 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2257 … RegexMatcher m("(?= ?)", 0, status); // This pattern will zero-length matches anywhere, in API_Match_UTF8()
2294 RegexMatcher m(".?", 0, status); in API_Match_UTF8()
2318 RegexMatcher m(".?", 0, status); in API_Match_UTF8()
2327 RegexMatcher *m = p->matcher(status); in API_Match_UTF8()
2348 RegexMatcher m(&testPattern, &testText, 0, status); in API_Match_UTF8()
2410 RegexMatcher m1(&testPattern, &testText, 0, status); in API_Match_UTF8()
2419 RegexMatcher m2(&testPattern, &testText, 0, status); in API_Match_UTF8()
2428 RegexMatcher m3(&testPattern, &testText, 0, status); in API_Match_UTF8()
2466 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2620 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2752 RegexMatcher m(&re, 0, status); in API_Replace_UTF8()
2895 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern_UTF8()
3123 RegexMatcher matcher(UnicodeString("(:)"), 0, status); in API_Pattern_UTF8()
3216 RegexMatcher quotedStuffMat(UNICODE_STRING_SIMPLE("\\s*([\\'\\\"/])(.*?)\\1"), 0, status); in Extended()
3217 RegexMatcher commentMat (UNICODE_STRING_SIMPLE("\\s*(#.*)?$"), 0, status); in Extended()
3218 …RegexMatcher flagsMat (UNICODE_STRING_SIMPLE("\\s*([ixsmdteDEGLMQvabtyYzZ2-9]*)([:letter:]… in Extended()
3220 RegexMatcher lineMat(UNICODE_STRING_SIMPLE("(.*?)\\r?\\n"), testString, 0, status); in Extended()
3386 RegexMatcher *parseMatcher = NULL; in regex_find()
3388 RegexMatcher *matcher = NULL, *UTF8Matcher = NULL; in regex_find()
4074 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTests()
4089 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTests()
4106 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTests()
4110 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTests()
4221 RegexMatcher *testMat = testPat->matcher(matchString, status); in PerlTests()
4443 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTestsUTF8()
4458 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTestsUTF8()
4475 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTestsUTF8()
4479 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTestsUTF8()
4616 RegexMatcher *testMat = &testPat->matcher(status)->reset(&inputText); in PerlTestsUTF8()
4799 RegexMatcher matcher(pattern, s, flags, status); in Bug6149()
4844 RegexMatcher matcher("x", 0, status); in Callbacks()
4858 …RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)+\\2)+x"), 0, status); // A pattern that can run … in Callbacks()
4948 RegexMatcher matcher("x", 0, status); in FindProgressCallbacks()
4962 RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)\\2)x"), 0, status); in FindProgressCallbacks()
5276 RegexMatcher *m = new RegexMatcher(UnicodeString("<<(?<mid>.+?)>>"), text, 0, status); in NamedCapture()
5286 m = new RegexMatcher(UnicodeString("..(?<one>m)(.)(.)"), text, 0, status); in NamedCapture()
5513 RegexMatcher *REMatcher = NULL; in Bug7651()
5542 RegexMatcher *m = new RegexMatcher(pattern, text, 0, status); in Bug7740()
5558 …RegexMatcher* const pMatcher = new RegexMatcher("\\Aboo\\z", UREGEX_DOTALL|UREGEX_CASE_INSENSITIVE… in Bug8479()
5577 RegexMatcher* const pMatcher = new RegexMatcher(".", 0, status); in Bug7029()
5717 LocalPointer<RegexMatcher> matcher(compiledPat->matcher(status)); in TestCase11049()
5815 RegexMatcher matcher(UnicodeString("(A)|(B)"), 0, status); in TestBug11480()