Lines Matching refs:len16

324             int32_t len16;
326 len16 = (int32_t)(fMatchStart-fAppendPosition);
329 len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus);
331 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
336 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status);
337 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status);
515 int32_t len16;
517 len16 = (int32_t)(fInputLength-fAppendPosition);
519 len16 = utext_extract(fInputText, fAppendPosition, fInputLength, NULL, 0, &status);
523 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
527 utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
529 utext_replace(dest, destLen, destLen, inputChars, len16, &status);
1249 int32_t len16;
1251 len16 = (int32_t)(e-s);
1254 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1256 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1261 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1264 utext_replace(dest, 0, utext_nativeLength(dest), groupChars, len16, &status);
1267 utext_openUChars(&groupText, groupChars, len16, &status);
1326 int32_t len16;
1328 len16 = (int32_t)(e-s);
1331 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1333 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1338 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1340 deltaLen = utext_replace(dest, destLen, destLen, groupChars, len16, &status);
1398 int32_t len16;
1400 len16 = (int32_t)fInputLength;
1402 len16 = utext_extract(fInputText, 0, fInputLength, NULL, 0, &status);
1405 UnicodeString *result = new UnicodeString(len16, 0, 0);
1407 UChar *inputChars = result->getBuffer(len16);
1408 utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning
1409 result->releaseBuffer(len16);