Lines Matching refs:RegexPattern

397     RegexPattern        *REPattern = NULL;  in doRegexLMTest()
402 REPattern = RegexPattern::compile(patString, 0, pe, status); in doRegexLMTest()
460 RegexPattern *REPattern = NULL; in doRegexLMTestUTF8()
465 REPattern = RegexPattern::compile(&pattern, 0, pe, status); in doRegexLMTestUTF8()
550 RegexPattern *callerPattern = NULL; in regex_err()
556 callerPattern = RegexPattern::compile(patString, 0, pe, status); in regex_err()
575 callerPattern = RegexPattern::compile(&patternText, 0, pe, status); in regex_err()
611 RegexPattern *pattern; in Basic()
612 …pattern = RegexPattern::compile(UNICODE_STRING_SIMPLE("a\\u00dfx").unescape(), UREGEX_CASE_INSENSI… in Basic()
804 RegexPattern *pat2; in API_Match()
805 pat2 = RegexPattern::compile(re, flags, pe, status); in API_Match()
936 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
995 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
1049 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
1140 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match()
1244 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match()
1357 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Replace()
1430 RegexPattern *pat2 = RegexPattern::compile(re2, flags, pe, status); in API_Replace()
1536 RegexPattern pata; // Test default constructor to not crash. in API_Pattern()
1537 RegexPattern patb; in API_Pattern()
1547 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status); in API_Pattern()
1548 RegexPattern *pat2 = RegexPattern::compile(re2, 0, pe, status); in API_Pattern()
1558 RegexPattern patc(*pat1); in API_Pattern()
1567 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status); in API_Pattern()
1573 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern()
1582 RegexPattern *pat1c = pat1->clone(); in API_Pattern()
1598RegexPattern *pSource = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\p{L}+"), 0, status); in API_Pattern()
1599 RegexPattern *pClone = pSource->clone(); in API_Pattern()
1617 REGEX_ASSERT(RegexPattern::matches(".*", "random input", pe, status) == TRUE); in API_Pattern()
1619 REGEX_ASSERT(RegexPattern::matches("abc", "random input", pe, status) == FALSE); in API_Pattern()
1621 REGEX_ASSERT(RegexPattern::matches(".*nput", "random input", pe, status) == TRUE); in API_Pattern()
1623 REGEX_ASSERT(RegexPattern::matches("random input", "random input", pe, status) == TRUE); in API_Pattern()
1625 REGEX_ASSERT(RegexPattern::matches(".*u", "random input", pe, status) == FALSE); in API_Pattern()
1628 REGEX_ASSERT(RegexPattern::matches("abc", "abc", pe, status) == FALSE); in API_Pattern()
1636 pat1 = RegexPattern::compile(" +", pe, status); in API_Pattern()
1691 pat1 = RegexPattern::compile(UNICODE_STRING_SIMPLE("<(\\w*)>"), pe, status); in API_Pattern()
1766 pat1 = RegexPattern::compile("([-,])", pe, status); in API_Pattern()
1779 pat1 = RegexPattern::compile(",", pe, status); in API_Pattern()
1799 pat1 = RegexPattern::compile(":?", pe, status); in API_Pattern()
1815 pat1 = new RegexPattern(); in API_Pattern()
1819 pat1 = RegexPattern::compile("(Hello, world)*", pe, status); in API_Pattern()
1828 pat1 = RegexPattern::compile("(Hello, world)*", pe, status); in API_Pattern()
1830 REGEX_ASSERT(pat1->getDynamicClassID() == RegexPattern::getStaticClassID()); in API_Pattern()
1870 RegexPattern *pat2; in API_Match_UTF8()
1871 pat2 = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2014 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2159 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2220 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2324 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match_UTF8()
2455 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Replace_UTF8()
2613 RegexPattern *pat2 = RegexPattern::compile(&re, flags, pe, status); in API_Replace_UTF8()
2816 RegexPattern pata; // Test default constructor to not crash. in API_Pattern_UTF8()
2817 RegexPattern patb; in API_Pattern_UTF8()
2832 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status); in API_Pattern_UTF8()
2833 RegexPattern *pat2 = RegexPattern::compile(&re2, 0, pe, status); in API_Pattern_UTF8()
2843 RegexPattern patc(*pat1); in API_Pattern_UTF8()
2852 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
2858 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern_UTF8()
2867 RegexPattern *pat1c = pat1->clone(); in API_Pattern_UTF8()
2890 RegexPattern *pSource = RegexPattern::compile(&pattern, 0, status); in API_Pattern_UTF8()
2891 RegexPattern *pClone = pSource->clone(); in API_Pattern_UTF8()
2925 REGEX_ASSERT(RegexPattern::matches(&pattern, &input, pe, status) == TRUE); in API_Pattern_UTF8()
2930 REGEX_ASSERT(RegexPattern::matches("abc", "random input", pe, status) == FALSE); in API_Pattern_UTF8()
2935 REGEX_ASSERT(RegexPattern::matches(".*nput", "random input", pe, status) == TRUE); in API_Pattern_UTF8()
2939 REGEX_ASSERT(RegexPattern::matches("random input", "random input", pe, status) == TRUE); in API_Pattern_UTF8()
2944 REGEX_ASSERT(RegexPattern::matches(".*u", "random input", pe, status) == FALSE); in API_Pattern_UTF8()
2950 REGEX_ASSERT(RegexPattern::matches("abc", "abc", pe, status) == FALSE); in API_Pattern_UTF8()
2964 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3023 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3103 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3150 pat1 = new RegexPattern(); in API_Pattern_UTF8()
3156 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3383 RegexPattern *parsePat = NULL; in regex_find()
3385 RegexPattern *callerPattern = NULL, *UTF8Pattern = NULL; in regex_find()
3431 callerPattern = RegexPattern::compile(pattern, bflags, pe, status); in regex_find()
3463 UTF8Pattern = RegexPattern::compile(&patternText, bflags, pe, status); in regex_find()
3529 parsePat = RegexPattern::compile("<(/?)(r|[0-9]+)>", 0, pe, status); in regex_find()
3845 RegexPattern *pat1= RegexPattern::compile(".*", flags, pe, status); in Errors()
4060RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, stat… in PerlTests()
4071 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status); in PerlTests()
4079RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, sta… in PerlTests()
4096RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), … in PerlTests()
4100 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status); in PerlTests()
4157 RegexPattern *testPat = RegexPattern::compile(pattern, flags, pe, status); in PerlTests()
4429RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, stat… in PerlTestsUTF8()
4440 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status); in PerlTestsUTF8()
4448RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, sta… in PerlTestsUTF8()
4465RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), … in PerlTestsUTF8()
4469 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status); in PerlTestsUTF8()
4539 RegexPattern *testPat = RegexPattern::compile(&patternText, flags, pe, status); in PerlTestsUTF8()
5230 RegexPattern *pat = RegexPattern::compile(UnicodeString( in NamedCapture()
5252 RegexPattern *copiedPat = new RegexPattern(*pat); in NamedCapture()
5468 RegexPattern *pat = RegexPattern::compile(pattern, 0, status); in NamedCaptureLimits()
5486 pat = RegexPattern::compile(pattern, 0, status); in NamedCaptureLimits()
5503 RegexPattern *REPattern = NULL; in Bug7651()
5508 REPattern = RegexPattern::compile(pattern1, 0, pe, status); in Bug7651()
5518 REPattern = RegexPattern::compile(pattern2, 0, pe, status); in Bug7651()
5701 LocalPointer<RegexPattern> compiledPat(RegexPattern::compile(patternString, 0, status)); in TestCase11049()
5750 LocalPointer<RegexPattern> compiledPat(RegexPattern::compile(patternString, 0, status)); in TestBug11371()
5762 LocalPointer<RegexPattern> compiledPat2(RegexPattern::compile(patternString, 0, status)); in TestBug11371()
5776 LocalPointer<RegexPattern> compiledPat3(RegexPattern::compile(patternString, 0, status)); in TestBug11371()