Home | History | Annotate | Download | only in intltest

Lines Matching refs:compile

375     REPattern = RegexPattern::compile(patString, 0, pe, status);
377 dataerrln("RegexTest failure in RegexPattern::compile() at line %d. Status = %s",
438 REPattern = RegexPattern::compile(&pattern, 0, pe, status);
440 dataerrln("RegexTest failure in RegexPattern::compile() at line %d (UTF8). Status = %s\n",
526 // Compile the caller's pattern
529 callerPattern = RegexPattern::compile(patString, 0, pe, status);
544 // Compile again, using a UTF-8-based UText
548 callerPattern = RegexPattern::compile(&patternText, 0, pe, status);
585 pattern = RegexPattern::compile(UNICODE_STRING_SIMPLE("a\\u00dfx").unescape(), UREGEX_CASE_INSENSITIVE, pe, status);
778 pat2 = RegexPattern::compile(re, flags, pe, status);
909 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status);
968 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status);
1022 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status);
1113 RegexPattern *p = RegexPattern::compile(".", 0, status);
1215 m.reset(ucharString); // should not compile.
1217 RegexPattern *p = RegexPattern::compile(".", 0, status);
1218 RegexMatcher *m2 = p->matcher(ucharString, status); // should not compile.
1220 RegexMatcher m3(".", ucharString, 0, status); // Should not compile
1330 RegexPattern *pat = RegexPattern::compile(re, flags, pe, status);
1403 RegexPattern *pat2 = RegexPattern::compile(re2, flags, pe, status);
1520 RegexPattern *pat1 = RegexPattern::compile(re1, 0, pe, status);
1521 RegexPattern *pat2 = RegexPattern::compile(re2, 0, pe, status);
1539 // Compile with no flags.
1540 RegexPattern *pat1a = RegexPattern::compile(re1, pe, status);
1545 // Compile with different flags should be not equal
1546 RegexPattern *pat1b = RegexPattern::compile(re1, UREGEX_CASE_INSENSITIVE, pe, status);
1571 RegexPattern *pSource = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\p{L}+"), 0, status);
1609 pat1 = RegexPattern::compile(" +", pe, status);
1664 pat1 = RegexPattern::compile(UNICODE_STRING_SIMPLE("<(\\w*)>"), pe, status);
1739 pat1 = RegexPattern::compile("([-,])", pe, status);
1752 pat1 = RegexPattern::compile(",", pe, status);
1772 pat1 = RegexPattern::compile(":?", pe, status);
1792 pat1 = RegexPattern::compile("(Hello, world)*", pe, status);
1801 pat1 = RegexPattern::compile("(Hello, world)*", pe, status);
1844 pat2 = RegexPattern::compile(&re, flags, pe, status);
1987 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status);
2107 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status);
2168 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status);
2272 RegexPattern *p = RegexPattern::compile(".", 0, status);
2403 RegexPattern *pat = RegexPattern::compile(&re, flags, pe, status);
2561 RegexPattern *pat2 = RegexPattern::compile(&re, flags, pe, status);
2778 RegexPattern *pat1 = RegexPattern::compile(&re1, 0, pe, status);
2779 RegexPattern *pat2 = RegexPattern::compile(&re2, 0, pe, status);
2797 // Compile with no flags.
2798 RegexPattern *pat1a = RegexPattern::compile(&re1, pe, status);
2803 // Compile with different flags should be not equal
2804 RegexPattern *pat1b = RegexPattern::compile(&re1, UREGEX_CASE_INSENSITIVE, pe, status);
2836 RegexPattern *pSource = RegexPattern::compile(&pattern, 0, status);
2910 pat1 = RegexPattern::compile(&re1, pe, status);
2969 pat1 = RegexPattern::compile(&re1, pe, status);
3049 pat1 = RegexPattern::compile(&re1, pe, status);
3071 pat1 = RegexPattern::compile(&re1, pe, status);
3319 // Compile the caller's pattern
3346 callerPattern = RegexPattern::compile(pattern, bflags, pe, status);
3349 // 'v' test flag means that the test pattern should not compile if ICU was configured
3358 logln("Pattern Compile returns \"%s\"", u_errorName(status));
3378 UTF8Pattern = RegexPattern::compile(&patternText, bflags, pe, status);
3382 // 'v' test flag means that the test pattern should not compile if ICU was configured
3391 logln("Pattern Compile returns \"%s\" (UTF8)", u_errorName(status));
3444 parsePat = RegexPattern::compile("<(/?)(r|[0-9]+)>", 0, pe, status);
3760 RegexPattern *pat1= RegexPattern::compile(".*", flags, pe, status);
3975 RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, status);
3977 dataerrln("RegexPattern::compile() error");
3986 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status);
3994 RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, status);
4011 RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), 0, pe, status);
4015 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status);
4069 // Compile the test pattern.
4072 RegexPattern *testPat = RegexPattern::compile(pattern, flags, pe, status);
4104 errln("line %d: Expected a pattern compile error, got success.", lineNum);
4344 RegexPattern* linePat = RegexPattern::compile(UNICODE_STRING_SIMPLE("(.+?)[\\r\\n]+"), 0, pe, status);
4346 dataerrln("RegexPattern::compile() error");
4355 RegexPattern* fieldPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\t"), 0, pe, status);
4363 RegexPattern *flagPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("('?)(.*)\\1(.*)"), 0, pe, status);
4380 RegexPattern *groupsPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$([+\\-])\\[(\\d+)\\]"), 0, pe, status);
4384 RegexPattern *cgPat = RegexPattern::compile(UNICODE_STRING_SIMPLE("\\$(\\d+)"), 0, pe, status);
4452 // Compile the test pattern.
4454 RegexPattern *testPat = RegexPattern::compile(&patternText, flags, pe, status);
4486 errln("line %d: Expected a pattern compile error, got success.", lineNum);
5130 REPattern = RegexPattern::compile(pattern1, 0, pe, status);
5140 REPattern = RegexPattern::compile(pattern2, 0, pe, status);