Lines Matching refs:dataText
2460 UText dataText = UTEXT_INITIALIZER; in API_Replace_UTF8() local
2461 utext_openUTF8(&dataText, data, -1, &status); in API_Replace_UTF8()
2463 REGEX_VERBOSE_TEXT(&dataText); in API_Replace_UTF8()
2464 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2505 utext_openUTF8(&dataText, str_abxabxabx, -1, &status); in API_Replace_UTF8()
2506 matcher->reset(&dataText); in API_Replace_UTF8()
2530 utext_openUTF8(&dataText, NULL, 0, &status); in API_Replace_UTF8()
2531 matcher->reset(&dataText); in API_Replace_UTF8()
2554 utext_openUTF8(&dataText, data, -1, &status); // ".abc..abc...abc.." in API_Replace_UTF8()
2555 matcher->reset(&dataText); in API_Replace_UTF8()
2583 utext_openUTF8(&dataText, str_abc, -1, &status); in API_Replace_UTF8()
2584 matcher->reset(&dataText); in API_Replace_UTF8()
2617 utext_openUTF8(&dataText, str_abcdefg, -1, &status); in API_Replace_UTF8()
2618 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2698 utext_openUTF8(&dataText, str_abc1abc2abc3, -1, &status); in API_Replace_UTF8()
2700 matcher->reset(&dataText); in API_Replace_UTF8()
2715 utext_openUTF8(&dataText, str_abc, -1, &status); in API_Replace_UTF8()
2718 matcher->reset(&dataText); in API_Replace_UTF8()
2747 utext_openUTF8(&dataText, str_blah, -1, &status); in API_Replace_UTF8()
2758 m.reset(&dataText); in API_Replace_UTF8()
2802 utext_close(&dataText); in API_Replace_UTF8()