Home | History | Annotate | Download | only in i18n

Lines Matching refs:len16

330             int32_t len16;
332 len16 = (int32_t)(fMatchStart-fAppendPosition);
335 len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus);
337 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
342 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status);
343 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status);
512 int32_t len16;
514 len16 = (int32_t)(fInputLength-fAppendPosition);
516 len16 = utext_extract(fInputText, fAppendPosition, fInputLength, NULL, 0, &status);
520 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
524 utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
526 utext_replace(dest, destLen, destLen, inputChars, len16, &status);
1228 int32_t len16;
1230 len16 = (int32_t)(e-s);
1233 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1235 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1240 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1243 utext_replace(dest, 0, utext_nativeLength(dest), groupChars, len16, &status);
1246 utext_openUChars(&groupText, groupChars, len16, &status);
1305 int32_t len16;
1307 len16 = (int32_t)(e-s);
1310 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1312 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1317 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1319 deltaLen = utext_replace(dest, destLen, destLen, groupChars, len16, &status);
1377 int32_t len16;
1379 len16 = (int32_t)fInputLength;
1381 len16 = utext_extract(fInputText, 0, fInputLength, NULL, 0, &status);
1384 UnicodeString *result = new UnicodeString(len16, 0, 0);
1386 UChar *inputChars = result->getBuffer(len16);
1387 utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning
1388 result->releaseBuffer(len16);