Lines Matching refs:dataText
2401 UText dataText = UTEXT_INITIALIZER; in API_Replace_UTF8() local
2402 utext_openUTF8(&dataText, data, -1, &status); in API_Replace_UTF8()
2404 REGEX_VERBOSE_TEXT(&dataText); in API_Replace_UTF8()
2405 RegexMatcher *matcher = &pat->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2446 utext_openUTF8(&dataText, str_abxabxabx, -1, &status); in API_Replace_UTF8()
2447 matcher->reset(&dataText); in API_Replace_UTF8()
2471 utext_openUTF8(&dataText, NULL, 0, &status); in API_Replace_UTF8()
2472 matcher->reset(&dataText); in API_Replace_UTF8()
2495 utext_openUTF8(&dataText, data, -1, &status); // ".abc..abc...abc.." in API_Replace_UTF8()
2496 matcher->reset(&dataText); in API_Replace_UTF8()
2524 utext_openUTF8(&dataText, str_abc, -1, &status); in API_Replace_UTF8()
2525 matcher->reset(&dataText); in API_Replace_UTF8()
2558 utext_openUTF8(&dataText, str_abcdefg, -1, &status); in API_Replace_UTF8()
2559 RegexMatcher *matcher2 = &pat2->matcher(status)->reset(&dataText); in API_Replace_UTF8()
2639 utext_openUTF8(&dataText, str_abc1abc2abc3, -1, &status); in API_Replace_UTF8()
2641 matcher->reset(&dataText); in API_Replace_UTF8()
2656 utext_openUTF8(&dataText, str_abc, -1, &status); in API_Replace_UTF8()
2659 matcher->reset(&dataText); in API_Replace_UTF8()
2688 utext_openUTF8(&dataText, str_blah, -1, &status); in API_Replace_UTF8()
2699 m.reset(&dataText); in API_Replace_UTF8()
2743 utext_close(&dataText); in API_Replace_UTF8()