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