Lines Matching full:length16
1261 ures_toUTF8String(const UChar *s16, int32_t length16,
1280 if (length16 == 0) {
1293 if (capacity < length16) {
1295 return u_strToUTF8(NULL, 0, pLength, s16, length16, status);
1297 if (!forceCopy && (length16 <= 0x2aaaaaaa)) {
1312 int32_t maxLength = 3 * length16 + 1;
1318 return u_strToUTF8(dest, capacity, pLength, s16, length16, status);
1327 int32_t length16;
1328 const UChar *s16 = ures_getString(resB, &length16, status);
1329 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);
1649 int32_t length16;
1650 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status);
1651 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);
2026 int32_t length16;
2027 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status);
2028 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);