Home | History | Annotate | Download | only in static_shim

Lines Matching refs:replacementText

2136 int32_t uregex_appendReplacement_android(URegularExpression * regexp, const UChar * replacementText, int32_t replacementLength, UChar ** destBuf, int32_t * destCapacity, UErrorCode * status) {
2137 return uregex_appendReplacement(regexp, replacementText, replacementLength, destBuf, destCapacity, status);
2139 void uregex_appendReplacementUText_android(URegularExpression * regexp, UText * replacementText, UText * dest, UErrorCode * status) {
2140 uregex_appendReplacementUText(regexp, replacementText, dest, status);
2256 int32_t uregex_replaceAll_android(URegularExpression * regexp, const UChar * replacementText, int32_t replacementLength, UChar * destBuf, int32_t destCapacity, UErrorCode * status) {
2257 return uregex_replaceAll(regexp, replacementText, replacementLength, destBuf, destCapacity, status);
2262 int32_t uregex_replaceFirst_android(URegularExpression * regexp, const UChar * replacementText, int32_t replacementLength, UChar * destBuf, int32_t destCapacity, UErrorCode * status) {
2263 return uregex_replaceFirst(regexp, replacementText, replacementLength, destBuf, destCapacity, status);
2892 int32_t utext_replace_android(UText * ut, int64_t nativeStart, int64_t nativeLimit, const UChar * replacementText, int32_t replacementLength, UErrorCode * status) {
2893 return utext_replace(ut, nativeStart, nativeLimit, replacementText, replacementLength, status);