Home | History | Annotate | Download | only in i18n

Lines Matching refs:len16

314             int32_t len16;
316 len16 = (int32_t)(fMatchStart-fAppendPosition);
319 len16 = utext_extract(fInputText, fAppendPosition, fMatchStart, NULL, 0, &lengthStatus);
321 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
322 utext_extract(fInputText, fAppendPosition, fMatchStart, inputChars, len16+1, &status);
323 destLen += utext_replace(dest, destLen, destLen, inputChars, len16, &status);
484 int32_t len16;
486 len16 = (int32_t)(fInputLength-fAppendPosition);
488 len16 = utext_extract(fInputText, fAppendPosition, fInputLength, NULL, 0, &status);
492 UChar *inputChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16));
493 utext_extract(fInputText, fAppendPosition, fInputLength, inputChars, len16, &status); // unterminated
496 utext_replace(dest, destLen, destLen, inputChars, len16, &status);
1160 int32_t len16;
1162 len16 = (int32_t)(e-s);
1165 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1167 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1168 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1171 utext_replace(dest, 0, utext_nativeLength(dest), groupChars, len16, &status);
1174 utext_openUChars(&groupText, groupChars, len16, &status);
1234 int32_t len16;
1236 len16 = (int32_t)(e-s);
1239 len16 = utext_extract(fInputText, s, e, NULL, 0, &lengthStatus);
1241 UChar *groupChars = (UChar *)uprv_malloc(sizeof(UChar)*(len16+1));
1242 utext_extract(fInputText, s, e, groupChars, len16+1, &status);
1244 deltaLen = utext_replace(dest, destLen, destLen, groupChars, len16, &status);
1302 int32_t len16;
1304 len16 = (int32_t)fInputLength;
1306 len16 = utext_extract(fInputText, 0, fInputLength, NULL, 0, &status);
1309 UnicodeString *result = new UnicodeString(len16, 0, 0);
1311 UChar *inputChars = result->getBuffer(len16);
1312 utext_extract(fInputText, 0, fInputLength, inputChars, len16, &status); // unterminated warning
1313 result->releaseBuffer(len16);