• Home
  • Raw
  • Download

Lines Matching refs:RegexMatcher

395     RegexMatcher        *REMatcher = NULL;  in doRegexLMTest()
458 RegexMatcher *REMatcher = NULL; in doRegexLMTestUTF8()
611RegexMatcher *m = pattern->matcher(UNICODE_STRING_SIMPLE("a\\u00dfxzzz").unescape(), status); in Basic()
756 RegexMatcher matcher(&pattern, 0, status); in UTextBasic()
813 RegexMatcher *m1 = pat2->matcher(inStr1, status); in API_Match()
886 RegexMatcher m("A?", 0, status); // will match zero length string. in API_Match()
937 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
997 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
1051 RegexMatcher *matcher = pat->matcher(data, status); in API_Match()
1075RegexMatcher m("(?= ?)", 0, status); // This pattern will zero-length matches anywhere, in API_Match()
1108 RegexMatcher m(".?", 0, status); in API_Match()
1129 RegexMatcher m(".?", 0, status); in API_Match()
1138 RegexMatcher *m = p->matcher(status); in API_Match()
1153 RegexMatcher m(".*", testString, 0, status); in API_Match()
1206 RegexMatcher m1(".*", testString, 0, status); in API_Match()
1213 RegexMatcher m2("a*", testString, 0, status); in API_Match()
1220 RegexMatcher m3(".*$", testString, 0, status); in API_Match()
1238 RegexMatcher m(".", 0, status); in API_Match()
1242 RegexMatcher *m2 = p->matcher(ucharString, status); // should not compile. in API_Match()
1244 RegexMatcher m3(".", ucharString, 0, status); // Should not compile in API_Match()
1259 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match()
1271 RegexMatcher matcher("(a+)+b", testString, 0, status); in API_Match()
1287 RegexMatcher matcher("(A)+A$", testString, 0, status); in API_Match()
1314 RegexMatcher matcher("abc", testString, 0, status); in API_Match()
1358 RegexMatcher *matcher = pat->matcher(data, status); in API_Replace()
1430 RegexMatcher *matcher2 = pat2->matcher(d5, status); in API_Replace()
1482 RegexMatcher m("ss(.*?)ee", 0, status); in API_Replace()
1598 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern()
1830 RegexMatcher *m = pat1->matcher(Hello, status); in API_Pattern()
1832 REGEX_ASSERT(m->getDynamicClassID() == RegexMatcher::getStaticClassID()); in API_Pattern()
1887 RegexMatcher *m1 = &pat2->matcher(status)->reset(&input1); in API_Match_UTF8()
1959 RegexMatcher m("A?", 0, status); // will match zero length string. in API_Match_UTF8()
2018 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2163 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2225 RegexMatcher *matcher = &pat->matcher(status)->reset(&input); in API_Match_UTF8()
2252RegexMatcher m("(?= ?)", 0, status); // This pattern will zero-length matches anywhere, in API_Match_UTF8()
2289 RegexMatcher m(".?", 0, status); in API_Match_UTF8()
2313 RegexMatcher m(".?", 0, status); in API_Match_UTF8()
2322 RegexMatcher *m = p->matcher(status); in API_Match_UTF8()
2343 RegexMatcher m(&testPattern, &testText, 0, status); in API_Match_UTF8()
2405 RegexMatcher m1(&testPattern, &testText, 0, status); in API_Match_UTF8()
2414 RegexMatcher m2(&testPattern, &testText, 0, status); in API_Match_UTF8()
2423 RegexMatcher m3(&testPattern, &testText, 0, status); in API_Match_UTF8()
2461 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2615 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2747 RegexMatcher m(&re, 0, status); in API_Replace_UTF8()
2890 RegexMatcher *mFromClone = pClone->matcher(status); in API_Pattern_UTF8()
3118 RegexMatcher matcher(UnicodeString("(:)"), 0, status); in API_Pattern_UTF8()
3211 RegexMatcher quotedStuffMat(UNICODE_STRING_SIMPLE("\\s*([\\'\\\"/])(.*?)\\1"), 0, status); in Extended()
3212 RegexMatcher commentMat (UNICODE_STRING_SIMPLE("\\s*(#.*)?$"), 0, status); in Extended()
3213RegexMatcher flagsMat (UNICODE_STRING_SIMPLE("\\s*([ixsmdteDEGLMQvabtyYzZ2-9]*)([:letter:]… in Extended()
3215 RegexMatcher lineMat(UNICODE_STRING_SIMPLE("(.*?)\\r?\\n"), testString, 0, status); in Extended()
3381 RegexMatcher *parseMatcher = NULL; in regex_find()
3383 RegexMatcher *matcher = NULL, *UTF8Matcher = NULL; in regex_find()
4062 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTests()
4077 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTests()
4094 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTests()
4098 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTests()
4209 RegexMatcher *testMat = testPat->matcher(matchString, status); in PerlTests()
4431 RegexMatcher* lineMat = linePat->matcher(testDataString, status); in PerlTestsUTF8()
4446 RegexMatcher* flagMat = flagPat->matcher(status); in PerlTestsUTF8()
4463 RegexMatcher *groupsMat = groupsPat->matcher(status); in PerlTestsUTF8()
4467 RegexMatcher *cgMat = cgPat->matcher(status); in PerlTestsUTF8()
4604 RegexMatcher *testMat = &testPat->matcher(status)->reset(&inputText); in PerlTestsUTF8()
4787 RegexMatcher matcher(pattern, s, flags, status); in Bug6149()
4832 RegexMatcher matcher("x", 0, status); in Callbacks()
4846RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)+\\2)+x"), 0, status); // A pattern that can run … in Callbacks()
4936 RegexMatcher matcher("x", 0, status); in FindProgressCallbacks()
4950 RegexMatcher matcher(UNICODE_STRING_SIMPLE("((.)\\2)x"), 0, status); in FindProgressCallbacks()
5264 RegexMatcher *m = new RegexMatcher(UnicodeString("<<(?<mid>.+?)>>"), text, 0, status); in NamedCapture()
5274 m = new RegexMatcher(UnicodeString("..(?<one>m)(.)(.)"), text, 0, status); in NamedCapture()
5501 RegexMatcher *REMatcher = NULL; in Bug7651()
5530 RegexMatcher *m = new RegexMatcher(pattern, text, 0, status); in Bug7740()
5546RegexMatcher* const pMatcher = new RegexMatcher("\\Aboo\\z", UREGEX_DOTALL|UREGEX_CASE_INSENSITIVE… in Bug8479()
5565 RegexMatcher* const pMatcher = new RegexMatcher(".", 0, status); in Bug7029()
5705 LocalPointer<RegexMatcher> matcher(compiledPat->matcher(status)); in TestCase11049()