Lines Matching refs:testPattern
2339 UText testPattern = UTEXT_INITIALIZER; in API_Match_UTF8() local
2341 regextst_openUTF8FromInvariant(&testPattern, ".*", -1, &status); in API_Match_UTF8()
2342 REGEX_VERBOSE_TEXT(&testPattern); in API_Match_UTF8()
2346 RegexMatcher m(&testPattern, &testText, 0, status); in API_Match_UTF8()
2393 utext_close(&testPattern); in API_Match_UTF8()
2401 UText testPattern = UTEXT_INITIALIZER; in API_Match_UTF8() local
2405 utext_openUTF8(&testPattern, str_, -1, &status); in API_Match_UTF8()
2408 RegexMatcher m1(&testPattern, &testText, 0, status); in API_Match_UTF8()
2416 utext_openUTF8(&testPattern, str_a, -1, &status); in API_Match_UTF8()
2417 RegexMatcher m2(&testPattern, &testText, 0, status); in API_Match_UTF8()
2425 utext_openUTF8(&testPattern, str_dotstardollar, -1, &status); in API_Match_UTF8()
2426 RegexMatcher m3(&testPattern, &testText, 0, status); in API_Match_UTF8()
2433 utext_close(&testPattern); in API_Match_UTF8()
3219 UnicodeString testPattern; // The pattern for test from the test file. in Extended() local
3260 testPattern = quotedStuffMat.group(2, status); in Extended()
3306 regex_find(testPattern, testFlags, matchString, srcPath, lineNum); in Extended()