• Home
  • Raw
  • Download

Lines Matching refs:RegexMatcher

338     RegexMatcher        *REMatcher = NULL;  in doRegexLMTest()
401 RegexMatcher *REMatcher = NULL; in doRegexLMTestUTF8()
554RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status); in Basic()
699 RegexMatcher matcher(&pattern, 0, status); in UTextBasic()
756 RegexMatcher *m1 = pat2->matcher(inStr1, status); in API_Match()
829 RegexMatcher m("A?", 0, status); // will match zero length string. in API_Match()
880 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
940 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
994 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
1018RegexMatcher m("(?= ?)", 0, status); // This pattern will zero-length matches anywhere, in API_Match()
1051 RegexMatcher m(".?", 0, status); in API_Match()
1072 RegexMatcher m(".?", 0, status); in API_Match()
1081 RegexMatcher *m = p->matcher(status); in API_Match()
1096 RegexMatcher m(".*", testString, 0, status); in API_Match()
1149 RegexMatcher m1(".*", testString, 0, status); in API_Match()
1156 RegexMatcher m2("a*", testString, 0, status); in API_Match()
1163 RegexMatcher m3(".*$", testString, 0, status); in API_Match()
1181 RegexMatcher m(".", 0, status); in API_Match()
1185 RegexMatcher *m2 = p->matcher(ucharString, status); // should not compile. in API_Match()
1187 RegexMatcher m3(".", ucharString, 0, status); // Should not compile in API_Match()
1202 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match()
1214 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match()
1230 RegexMatcher matcher("(A)+A$", testString, 0, status); in API_Match()
1257 RegexMatcher matcher("abc", testString, 0, status); in API_Match()
1301 RegexMatcher *matcher = pat->matcher(data, status); in API_Replace()
1373 RegexMatcher *matcher2 = pat2->matcher(d5, status); in API_Replace()
1425 RegexMatcher m("ss(.*?)ee", 0, status); in API_Replace()
1541 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern()
1773 RegexMatcher *m = pat1->matcher(Hello, status); in API_Pattern()
1775 REGEX_ASSERT(m->getDynamicClassID() == RegexMatcher::getStaticClassID()); in API_Pattern()
1830 RegexMatcher *m1 = &pat2->matcher(status)->reset(&input1); in API_Match_UTF8()
1902 RegexMatcher m("A?", 0, status); // will match zero length string. in API_Match_UTF8()
1961 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2106 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2168 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2195RegexMatcher m("(?= ?)", 0, status); // This pattern will zero-length matches anywhere, in API_Match_UTF8()
2232 RegexMatcher m(".?", 0, status); in API_Match_UTF8()
2256 RegexMatcher m(".?", 0, status); in API_Match_UTF8()
2265 RegexMatcher *m = p->matcher(status); in API_Match_UTF8()
2286 RegexMatcher m(&testPattern, &testText, 0, status); in API_Match_UTF8()
2348 RegexMatcher m1(&testPattern, &testText, 0, status); in API_Match_UTF8()
2357 RegexMatcher m2(&testPattern, &testText, 0, status); in API_Match_UTF8()
2366 RegexMatcher m3(&testPattern, &testText, 0, status); in API_Match_UTF8()
2404 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2558 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2690 RegexMatcher m(&re, 0, status); in API_Replace_UTF8()
2833 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern_UTF8()
3061 RegexMatcher matcher(UnicodeString("(:)"), 0, status); in API_Pattern_UTF8()
3154 RegexMatcher quotedStuffMat(UNICODE_STRING_SIMPLE("\\s*([\\'\\\"/])(.*?)\\1"), 0, status); in Extended()
3155 RegexMatcher commentMat (UNICODE_STRING_SIMPLE("\\s*(#.*)?$"), 0, status); in Extended()
3156RegexMatcher flagsMat (UNICODE_STRING_SIMPLE("\\s*([ixsmdteDEGLMQvabtyYzZ2-9]*)([:letter:]… in Extended()
3158 RegexMatcher lineMat(UNICODE_STRING_SIMPLE("(.*?)\\r?\\n"), testString, 0, status); in Extended()
3324 RegexMatcher *parseMatcher = NULL; in regex_find()
3326 RegexMatcher *matcher = NULL, *UTF8Matcher = NULL; in regex_find()
4012 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTests()
4027 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTests()
4044 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTests()
4048 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTests()
4159 RegexMatcher *testMat = testPat->matcher(matchString, status); in PerlTests()
4381 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTestsUTF8()
4396 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTestsUTF8()
4413 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTestsUTF8()
4417 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTestsUTF8()
4554 RegexMatcher *testMat = &testPat->matcher(status)->reset(&inputText); in PerlTestsUTF8()
4737 RegexMatcher matcher(pattern, s, flags, status); in Bug6149()
4782 RegexMatcher matcher("x", 0, status); in Callbacks()
4796RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)+\\2)+x"), 0, status); // A pattern that can run … in Callbacks()
4886 RegexMatcher matcher("x", 0, status); in FindProgressCallbacks()
4900 RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)\\2)x"), 0, status); in FindProgressCallbacks()
5214 RegexMatcher *m = new RegexMatcher(UnicodeString("<<(?<mid>.+?)>>"), text, 0, status); in NamedCapture()
5224 m = new RegexMatcher(UnicodeString("..(?<one>m)(.)(.)"), text, 0, status); in NamedCapture()
5451 RegexMatcher *REMatcher = NULL; in Bug7651()
5480 RegexMatcher *m = new RegexMatcher(pattern, text, 0, status); in Bug7740()
5496RegexMatcher* const pMatcher = new RegexMatcher("\\Aboo\\z", UREGEX_DOTALL|UREGEX_CASE_INSENSITIVE… in Bug8479()
5515 RegexMatcher* const pMatcher = new RegexMatcher(".", 0, status); in Bug7029()
5655 LocalPointer<RegexMatcher> matcher(compiledPat->matcher(status)); in TestCase11049()
5753 RegexMatcher matcher(UnicodeString("(A)|(B)"), 0, status); in TestBug11480()
5779 RegexMatcher m(pattern, text, 0, status); in TestBug12884()
5788 RegexMatcher ngM(ngPattern, text, 0, status); in TestBug12884()
5823 RegexMatcher matcher(upat, 0, status); in TestBug13631()