Lines Matching refs:testPattern
2313 UText testPattern = UTEXT_INITIALIZER; in API_Match_UTF8() local
2315 regextst_openUTF8FromInvariant(&testPattern, ".*", -1, &status); in API_Match_UTF8()
2316 REGEX_VERBOSE_TEXT(&testPattern); in API_Match_UTF8()
2320 RegexMatcher m(&testPattern, &testText, 0, status); in API_Match_UTF8()
2367 utext_close(&testPattern); in API_Match_UTF8()
2375 UText testPattern = UTEXT_INITIALIZER; in API_Match_UTF8() local
2379 utext_openUTF8(&testPattern, str_, -1, &status); in API_Match_UTF8()
2382 RegexMatcher m1(&testPattern, &testText, 0, status); in API_Match_UTF8()
2390 utext_openUTF8(&testPattern, str_a, -1, &status); in API_Match_UTF8()
2391 RegexMatcher m2(&testPattern, &testText, 0, status); in API_Match_UTF8()
2399 utext_openUTF8(&testPattern, str_dotstardollar, -1, &status); in API_Match_UTF8()
2400 RegexMatcher m3(&testPattern, &testText, 0, status); in API_Match_UTF8()
2407 utext_close(&testPattern); in API_Match_UTF8()
3193 UnicodeString testPattern; // The pattern for test from the test file. in Extended() local
3234 testPattern = quotedStuffMat.group(2, status); in Extended()
3280 regex_find(testPattern, testFlags, matchString, srcPath, lineNum); in Extended()