Lines Matching refs:len16
322 int32_t len16; in appendReplacement() local
324 len16 = (int32_t)(fMatchStart-fAppendPosition); in appendReplacement()
327 … len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus); in appendReplacement()
329 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendReplacement()
334 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status); in appendReplacement()
335 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendReplacement()
521 int32_t len16; in appendTail() local
523 len16 = (int32_t)(fInputLength-fAppendPosition); in appendTail()
525 len16 = utext_extract(fInputText, fAppendPosition, fInputLength, NULL, 0, &status); in appendTail()
529 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16)); in appendTail()
533 …utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // untermina… in appendTail()
535 utext_replace(dest, destLen, destLen, inputChars, len16, &status); in appendTail()
1280 int32_t len16; in appendGroup() local
1282 len16 = (int32_t)(e-s); in appendGroup()
1285 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus); in appendGroup()
1287 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1)); in appendGroup()
1292 utext_extract(fInputText, s, e, groupChars, len16+1, &status); in appendGroup()
1294 deltaLen = utext_replace(dest, destLen, destLen, groupChars, len16, &status); in appendGroup()
1350 int32_t len16; in input() local
1352 len16 = (int32_t)fInputLength; in input()
1354 len16 = utext_extract(fInputText, 0, fInputLength, NULL, 0, &status); in input()
1357 UnicodeString *result = new UnicodeString(len16, 0, 0); in input()
1359 UChar *inputChars = result->getBuffer(len16); in input()
1360 … utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning in input()
1361 result->releaseBuffer(len16); in input()