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);
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);
1255 int32_t len16;
1257 len16 = (int32_t)(e-s);
1260 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1262 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1267 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1270 utext_replace(dest, 0, utext_nativeLength(dest), groupChars, len16, &status);
1273 utext_openUChars(&groupText, groupChars, len16, &status);
1332 int32_t len16;
1334 len16 = (int32_t)(e-s);
1337 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1339 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1344 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1346 deltaLen = utext_replace(dest, destLen, destLen, groupChars, len16, &status);
1404 int32_t len16;
1406 len16 = (int32_t)fInputLength;
1408 len16 = utext_extract(fInputText, 0, fInputLength, NULL, 0, &status);
1411 UnicodeString *result = new UnicodeString(len16, 0, 0);
1413 UChar *inputChars = result->getBuffer(len16);
1414 utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning
1415 result->releaseBuffer(len16);