• Home
  • Raw
  • Download

Lines Matching refs:RegexPattern

371     RegexPattern        *REPattern = NULL;  in doRegexLMTest()
376 REPattern = RegexPattern::compile(patString, 0, pe, status); in doRegexLMTest()
434 RegexPattern *REPattern = NULL; in doRegexLMTestUTF8()
439 REPattern = RegexPattern::compile(&pattern, 0, pe, status); in doRegexLMTestUTF8()
524 RegexPattern *callerPattern = NULL; in regex_err()
530 callerPattern = RegexPattern::compile(patString, 0, pe, status); in regex_err()
549 callerPattern = RegexPattern::compile(&patternText, 0, pe, status); in regex_err()
585 RegexPattern *pattern; in Basic()
586 …pattern = RegexPattern::compile(UNICODE_STRING_SIMPLE("a\\u00dfx").unescape(), UREGEX_CASE_INSENSI… in Basic()
778 RegexPattern *pat2; in API_Match()
779 pat2 = RegexPattern::compile(re, flags, pe, status); in API_Match()
910 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
969 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
1023 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
1114 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match()
1218 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match()
1331 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Replace()
1404 RegexPattern *pat2 = RegexPattern::compile(re2, flags, pe, status); in API_Replace()
1510 RegexPattern pata; // Test default constructor to not crash. in API_Pattern()
1511 RegexPattern patb; in API_Pattern()
1521 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status); in API_Pattern()
1522 RegexPattern *pat2 = RegexPattern::compile(re2, 0, pe, status); in API_Pattern()
1532 RegexPattern patc(*pat1); in API_Pattern()
1541 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status); in API_Pattern()
1547 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern()
1556 RegexPattern *pat1c = pat1->clone(); in API_Pattern()
1572RegexPattern *pSource = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\p{L}+"), 0, status); in API_Pattern()
1573 RegexPattern *pClone = pSource->clone(); in API_Pattern()
1591 REGEX_ASSERT(RegexPattern::matches(".*", "random input", pe, status) == TRUE); in API_Pattern()
1593 REGEX_ASSERT(RegexPattern::matches("abc", "random input", pe, status) == FALSE); in API_Pattern()
1595 REGEX_ASSERT(RegexPattern::matches(".*nput", "random input", pe, status) == TRUE); in API_Pattern()
1597 REGEX_ASSERT(RegexPattern::matches("random input", "random input", pe, status) == TRUE); in API_Pattern()
1599 REGEX_ASSERT(RegexPattern::matches(".*u", "random input", pe, status) == FALSE); in API_Pattern()
1602 REGEX_ASSERT(RegexPattern::matches("abc", "abc", pe, status) == FALSE); in API_Pattern()
1610 pat1 = RegexPattern::compile(" +", pe, status); in API_Pattern()
1665 pat1 = RegexPattern::compile(UNICODE_STRING_SIMPLE("<(\\w*)>"), pe, status); in API_Pattern()
1740 pat1 = RegexPattern::compile("([-,])", pe, status); in API_Pattern()
1753 pat1 = RegexPattern::compile(",", pe, status); in API_Pattern()
1773 pat1 = RegexPattern::compile(":?", pe, status); in API_Pattern()
1789 pat1 = new RegexPattern(); in API_Pattern()
1793 pat1 = RegexPattern::compile("(Hello, world)*", pe, status); in API_Pattern()
1802 pat1 = RegexPattern::compile("(Hello, world)*", pe, status); in API_Pattern()
1804 REGEX_ASSERT(pat1->getDynamicClassID() == RegexPattern::getStaticClassID()); in API_Pattern()
1844 RegexPattern *pat2; in API_Match_UTF8()
1845 pat2 = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
1988 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2133 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2194 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2298 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match_UTF8()
2429 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Replace_UTF8()
2587 RegexPattern *pat2 = RegexPattern::compile(&re, flags, pe, status); in API_Replace_UTF8()
2790 RegexPattern pata; // Test default constructor to not crash. in API_Pattern_UTF8()
2791 RegexPattern patb; in API_Pattern_UTF8()
2806 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status); in API_Pattern_UTF8()
2807 RegexPattern *pat2 = RegexPattern::compile(&re2, 0, pe, status); in API_Pattern_UTF8()
2817 RegexPattern patc(*pat1); in API_Pattern_UTF8()
2826 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
2832 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern_UTF8()
2841 RegexPattern *pat1c = pat1->clone(); in API_Pattern_UTF8()
2864 RegexPattern *pSource = RegexPattern::compile(&pattern, 0, status); in API_Pattern_UTF8()
2865 RegexPattern *pClone = pSource->clone(); in API_Pattern_UTF8()
2899 REGEX_ASSERT(RegexPattern::matches(&pattern, &input, pe, status) == TRUE); in API_Pattern_UTF8()
2904 REGEX_ASSERT(RegexPattern::matches("abc", "random input", pe, status) == FALSE); in API_Pattern_UTF8()
2909 REGEX_ASSERT(RegexPattern::matches(".*nput", "random input", pe, status) == TRUE); in API_Pattern_UTF8()
2913 REGEX_ASSERT(RegexPattern::matches("random input", "random input", pe, status) == TRUE); in API_Pattern_UTF8()
2918 REGEX_ASSERT(RegexPattern::matches(".*u", "random input", pe, status) == FALSE); in API_Pattern_UTF8()
2924 REGEX_ASSERT(RegexPattern::matches("abc", "abc", pe, status) == FALSE); in API_Pattern_UTF8()
2938 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
2997 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3077 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3124 pat1 = new RegexPattern(); in API_Pattern_UTF8()
3130 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3357 RegexPattern *parsePat = NULL; in regex_find()
3359 RegexPattern *callerPattern = NULL, *UTF8Pattern = NULL; in regex_find()
3405 callerPattern = RegexPattern::compile(pattern, bflags, pe, status); in regex_find()
3437 UTF8Pattern = RegexPattern::compile(&patternText, bflags, pe, status); in regex_find()
3503 parsePat = RegexPattern::compile("<(/?)(r|[0-9]+)>", 0, pe, status); in regex_find()
3835 RegexPattern *pat1= RegexPattern::compile(".*", flags, pe, status); in Errors()
4050RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, stat… in PerlTests()
4061 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status); in PerlTests()
4069RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, sta… in PerlTests()
4086RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), … in PerlTests()
4090 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status); in PerlTests()
4147 RegexPattern *testPat = RegexPattern::compile(pattern, flags, pe, status); in PerlTests()
4421RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, stat… in PerlTestsUTF8()
4432 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status); in PerlTestsUTF8()
4440RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, sta… in PerlTestsUTF8()
4457RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), … in PerlTestsUTF8()
4461 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status); in PerlTestsUTF8()
4531 RegexPattern *testPat = RegexPattern::compile(&patternText, flags, pe, status); in PerlTestsUTF8()
5224 RegexPattern *pat = RegexPattern::compile(UnicodeString( in NamedCapture()
5246 RegexPattern *copiedPat = new RegexPattern(*pat); in NamedCapture()
5462 RegexPattern *pat = RegexPattern::compile(pattern, 0, status); in NamedCaptureLimits()
5480 pat = RegexPattern::compile(pattern, 0, status); in NamedCaptureLimits()
5497 RegexPattern *REPattern = NULL; in Bug7651()
5502 REPattern = RegexPattern::compile(pattern1, 0, pe, status); in Bug7651()
5512 REPattern = RegexPattern::compile(pattern2, 0, pe, status); in Bug7651()
5695 LocalPointer<RegexPattern> compiledPat(RegexPattern::compile(patternString, 0, status)); in TestCase11049()
5744 LocalPointer<RegexPattern> compiledPat(RegexPattern::compile(patternString, 0, status)); in TestBug11371()
5756 LocalPointer<RegexPattern> compiledPat2(RegexPattern::compile(patternString, 0, status)); in TestBug11371()
5770 LocalPointer<RegexPattern> compiledPat3(RegexPattern::compile(patternString, 0, status)); in TestBug11371()
5952 LocalPointer<RegexPattern> pattern(RegexPattern::compile(patternString, pe, status), status); in TestBug20863()
5969 LocalPointer<RegexPattern> pat1(RegexPattern::compile(u"abc", pe, status), status); in TestBug20863()
5970 LocalPointer<RegexPattern> pat2(RegexPattern::compile(u"a(?<name>b)c", pe, status), status); in TestBug20863()
5981 LocalPointer<RegexPattern> pat1(RegexPattern::compile(u"abc", pe, status), status); in TestBug20863()
5982 LocalPointer<RegexPattern> pat2(RegexPattern::compile(u"a(?<name>b)c", pe, status), status); in TestBug20863()
5996 … LocalPointer<RegexPattern> pat1(RegexPattern::compile(u"a(?<name1>b)c", pe, status), status); in TestBug20863()
5997 … LocalPointer<RegexPattern> pat2(RegexPattern::compile(u"a(?<name2>b)c", pe, status), status); in TestBug20863()