Lines Matching refs:dataText
2434 UText dataText = UTEXT_INITIALIZER; in API_Replace_UTF8() local
2435 utext_openUTF8(&dataText, data, -1, &status); in API_Replace_UTF8()
2437 REGEX_VERBOSE_TEXT(&dataText); in API_Replace_UTF8()
2438 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2479 utext_openUTF8(&dataText, str_abxabxabx, -1, &status); in API_Replace_UTF8()
2480 matcher->reset(&dataText); in API_Replace_UTF8()
2504 utext_openUTF8(&dataText, NULL, 0, &status); in API_Replace_UTF8()
2505 matcher->reset(&dataText); in API_Replace_UTF8()
2528 utext_openUTF8(&dataText, data, -1, &status); // ".abc..abc...abc.." in API_Replace_UTF8()
2529 matcher->reset(&dataText); in API_Replace_UTF8()
2557 utext_openUTF8(&dataText, str_abc, -1, &status); in API_Replace_UTF8()
2558 matcher->reset(&dataText); in API_Replace_UTF8()
2591 utext_openUTF8(&dataText, str_abcdefg, -1, &status); in API_Replace_UTF8()
2592 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2672 utext_openUTF8(&dataText, str_abc1abc2abc3, -1, &status); in API_Replace_UTF8()
2674 matcher->reset(&dataText); in API_Replace_UTF8()
2689 utext_openUTF8(&dataText, str_abc, -1, &status); in API_Replace_UTF8()
2692 matcher->reset(&dataText); in API_Replace_UTF8()
2721 utext_openUTF8(&dataText, str_blah, -1, &status); in API_Replace_UTF8()
2732 m.reset(&dataText); in API_Replace_UTF8()
2776 utext_close(&dataText); in API_Replace_UTF8()