• Home
  • Raw
  • Download

Lines Matching refs:RegexPattern

399     RegexPattern        *REPattern = NULL;  in doRegexLMTest()
404 REPattern = RegexPattern::compile(patString, 0, pe, status); in doRegexLMTest()
462 RegexPattern *REPattern = NULL; in doRegexLMTestUTF8()
467 REPattern = RegexPattern::compile(&pattern, 0, pe, status); in doRegexLMTestUTF8()
552 RegexPattern *callerPattern = NULL; in regex_err()
558 callerPattern = RegexPattern::compile(patString, 0, pe, status); in regex_err()
577 callerPattern = RegexPattern::compile(&patternText, 0, pe, status); in regex_err()
613 RegexPattern *pattern; in Basic()
614 …pattern = RegexPattern::compile(UNICODE_STRING_SIMPLE("a\\u00dfx").unescape(), UREGEX_CASE_INSENSI… in Basic()
806 RegexPattern *pat2; in API_Match()
807 pat2 = RegexPattern::compile(re, flags, pe, status); in API_Match()
938 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
997 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
1051 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Match()
1142 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match()
1246 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match()
1359 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status); in API_Replace()
1432 RegexPattern *pat2 = RegexPattern::compile(re2, flags, pe, status); in API_Replace()
1538 RegexPattern pata; // Test default constructor to not crash. in API_Pattern()
1539 RegexPattern patb; in API_Pattern()
1549 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status); in API_Pattern()
1550 RegexPattern *pat2 = RegexPattern::compile(re2, 0, pe, status); in API_Pattern()
1560 RegexPattern patc(*pat1); in API_Pattern()
1569 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status); in API_Pattern()
1575 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern()
1584 RegexPattern *pat1c = pat1->clone(); in API_Pattern()
1600RegexPattern *pSource = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\p{L}+"), 0, status); in API_Pattern()
1601 RegexPattern *pClone = pSource->clone(); in API_Pattern()
1619 REGEX_ASSERT(RegexPattern::matches(".*", "random input", pe, status) == TRUE); in API_Pattern()
1621 REGEX_ASSERT(RegexPattern::matches("abc", "random input", pe, status) == FALSE); in API_Pattern()
1623 REGEX_ASSERT(RegexPattern::matches(".*nput", "random input", pe, status) == TRUE); in API_Pattern()
1625 REGEX_ASSERT(RegexPattern::matches("random input", "random input", pe, status) == TRUE); in API_Pattern()
1627 REGEX_ASSERT(RegexPattern::matches(".*u", "random input", pe, status) == FALSE); in API_Pattern()
1630 REGEX_ASSERT(RegexPattern::matches("abc", "abc", pe, status) == FALSE); in API_Pattern()
1638 pat1 = RegexPattern::compile(" +", pe, status); in API_Pattern()
1693 pat1 = RegexPattern::compile(UNICODE_STRING_SIMPLE("<(\\w*)>"), pe, status); in API_Pattern()
1768 pat1 = RegexPattern::compile("([-,])", pe, status); in API_Pattern()
1781 pat1 = RegexPattern::compile(",", pe, status); in API_Pattern()
1801 pat1 = RegexPattern::compile(":?", pe, status); in API_Pattern()
1817 pat1 = new RegexPattern(); in API_Pattern()
1821 pat1 = RegexPattern::compile("(Hello, world)*", pe, status); in API_Pattern()
1830 pat1 = RegexPattern::compile("(Hello, world)*", pe, status); in API_Pattern()
1832 REGEX_ASSERT(pat1->getDynamicClassID() == RegexPattern::getStaticClassID()); in API_Pattern()
1872 RegexPattern *pat2; in API_Match_UTF8()
1873 pat2 = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2016 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2161 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2222 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Match_UTF8()
2326 RegexPattern *p = RegexPattern::compile(".", 0, status); in API_Match_UTF8()
2457 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status); in API_Replace_UTF8()
2615 RegexPattern *pat2 = RegexPattern::compile(&re, flags, pe, status); in API_Replace_UTF8()
2818 RegexPattern pata; // Test default constructor to not crash. in API_Pattern_UTF8()
2819 RegexPattern patb; in API_Pattern_UTF8()
2834 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status); in API_Pattern_UTF8()
2835 RegexPattern *pat2 = RegexPattern::compile(&re2, 0, pe, status); in API_Pattern_UTF8()
2845 RegexPattern patc(*pat1); in API_Pattern_UTF8()
2854 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
2860 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status); in API_Pattern_UTF8()
2869 RegexPattern *pat1c = pat1->clone(); in API_Pattern_UTF8()
2892 RegexPattern *pSource = RegexPattern::compile(&pattern, 0, status); in API_Pattern_UTF8()
2893 RegexPattern *pClone = pSource->clone(); in API_Pattern_UTF8()
2927 REGEX_ASSERT(RegexPattern::matches(&pattern, &input, pe, status) == TRUE); in API_Pattern_UTF8()
2932 REGEX_ASSERT(RegexPattern::matches("abc", "random input", pe, status) == FALSE); in API_Pattern_UTF8()
2937 REGEX_ASSERT(RegexPattern::matches(".*nput", "random input", pe, status) == TRUE); in API_Pattern_UTF8()
2941 REGEX_ASSERT(RegexPattern::matches("random input", "random input", pe, status) == TRUE); in API_Pattern_UTF8()
2946 REGEX_ASSERT(RegexPattern::matches(".*u", "random input", pe, status) == FALSE); in API_Pattern_UTF8()
2952 REGEX_ASSERT(RegexPattern::matches("abc", "abc", pe, status) == FALSE); in API_Pattern_UTF8()
2966 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3025 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3105 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3152 pat1 = new RegexPattern(); in API_Pattern_UTF8()
3158 pat1 = RegexPattern::compile(&re1, pe, status); in API_Pattern_UTF8()
3385 RegexPattern *parsePat = NULL; in regex_find()
3387 RegexPattern *callerPattern = NULL, *UTF8Pattern = NULL; in regex_find()
3433 callerPattern = RegexPattern::compile(pattern, bflags, pe, status); in regex_find()
3465 UTF8Pattern = RegexPattern::compile(&patternText, bflags, pe, status); in regex_find()
3531 parsePat = RegexPattern::compile("<(/?)(r|[0-9]+)>", 0, pe, status); in regex_find()
3854 RegexPattern *pat1= RegexPattern::compile(".*", flags, pe, status); in Errors()
4069RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, stat… in PerlTests()
4080 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status); in PerlTests()
4088RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, sta… in PerlTests()
4105RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), … in PerlTests()
4109 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status); in PerlTests()
4166 RegexPattern *testPat = RegexPattern::compile(pattern, flags, pe, status); in PerlTests()
4438RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, stat… in PerlTestsUTF8()
4449 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status); in PerlTestsUTF8()
4457RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, sta… in PerlTestsUTF8()
4474RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), … in PerlTestsUTF8()
4478 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status); in PerlTestsUTF8()
4548 RegexPattern *testPat = RegexPattern::compile(&patternText, flags, pe, status); in PerlTestsUTF8()
5239 RegexPattern *pat = RegexPattern::compile(UnicodeString( in NamedCapture()
5261 RegexPattern *copiedPat = new RegexPattern(*pat); in NamedCapture()
5477 RegexPattern *pat = RegexPattern::compile(pattern, 0, status); in NamedCaptureLimits()
5495 pat = RegexPattern::compile(pattern, 0, status); in NamedCaptureLimits()
5512 RegexPattern *REPattern = NULL; in Bug7651()
5517 REPattern = RegexPattern::compile(pattern1, 0, pe, status); in Bug7651()
5527 REPattern = RegexPattern::compile(pattern2, 0, pe, status); in Bug7651()
5710 LocalPointer<RegexPattern> compiledPat(RegexPattern::compile(patternString, 0, status)); in TestCase11049()
5759 LocalPointer<RegexPattern> compiledPat(RegexPattern::compile(patternString, 0, status)); in TestBug11371()
5771 LocalPointer<RegexPattern> compiledPat2(RegexPattern::compile(patternString, 0, status)); in TestBug11371()
5785 LocalPointer<RegexPattern> compiledPat3(RegexPattern::compile(patternString, 0, status)); in TestBug11371()