Lines Matching refs:replacementLength
1151 int32_t replacementLength, in uregex_replaceAll() argument
1159 if (replacementText == NULL || replacementLength < -1 || in uregex_replaceAll()
1177 len += uregex_appendReplacement(regexp2, replacementText, replacementLength, in uregex_replaceAll()
1225 int32_t replacementLength, in uregex_replaceFirst() argument
1233 if (replacementText == NULL || replacementLength < -1 || in uregex_replaceFirst()
1245 len = uregex_appendReplacement(regexp2, replacementText, replacementLength, in uregex_replaceFirst()
1293 int32_t replacementLength,
1339 int32_t replacementLength, in appendReplacement() argument
1359 if (replacementText == NULL || replacementLength < -1 || in appendReplacement()
1381 if (replacementLength == -1) { in appendReplacement()
1382 replacementLength = u_strlen(replacementText); in appendReplacement()
1412 while (replIdx < replacementLength && U_SUCCESS(*status)) { in appendReplacement()
1428 if (replIdx >= replacementLength) { in appendReplacement()
1438 replacementLength, // Length of replacement text in appendReplacement()
1467 U16_GET(replacementText, 0, replIdx, replacementLength, c32); in appendReplacement()
1472 if (replIdx >= replacementLength) { in appendReplacement()
1475 U16_GET(replacementText, 0, replIdx, replacementLength, c32); in appendReplacement()
1483 U16_FWD_1(replacementText, replIdx, replacementLength); in appendReplacement()
1495 U16_FWD_1(replacementText, replIdx, replacementLength); in appendReplacement()
1497 if (replIdx >= replacementLength) { in appendReplacement()
1501 U16_NEXT(replacementText, replIdx, replacementLength, c32); in appendReplacement()
1584 int32_t replacementLength, in uregex_appendReplacement() argument
1591 regexp, replacementText, replacementLength,destBuf, destCapacity, status); in uregex_appendReplacement()