Lines Matching refs:testPattern
2276 UText testPattern = UTEXT_INITIALIZER; in API_Match_UTF8() local
2278 regextst_openUTF8FromInvariant(&testPattern, ".*", -1, &status); in API_Match_UTF8()
2279 REGEX_VERBOSE_TEXT(&testPattern); in API_Match_UTF8()
2283 RegexMatcher m(&testPattern, &testText, 0, status); in API_Match_UTF8()
2330 utext_close(&testPattern); in API_Match_UTF8()
2338 UText testPattern = UTEXT_INITIALIZER; in API_Match_UTF8() local
2342 utext_openUTF8(&testPattern, str_, -1, &status); in API_Match_UTF8()
2345 RegexMatcher m1(&testPattern, &testText, 0, status); in API_Match_UTF8()
2353 utext_openUTF8(&testPattern, str_a, -1, &status); in API_Match_UTF8()
2354 RegexMatcher m2(&testPattern, &testText, 0, status); in API_Match_UTF8()
2362 utext_openUTF8(&testPattern, str_dotstardollar, -1, &status); in API_Match_UTF8()
2363 RegexMatcher m3(&testPattern, &testText, 0, status); in API_Match_UTF8()
2370 utext_close(&testPattern); in API_Match_UTF8()
3123 UnicodeString testPattern; // The pattern for test from the test file. in Extended() local
3164 testPattern = quotedStuffMat.group(2, status); in Extended()
3210 regex_find(testPattern, testFlags, matchString, srcPath, lineNum); in Extended()