Lines Matching refs:length16
1262 ures_toUTF8String(const UChar *s16, int32_t length16, in ures_toUTF8String() argument
1281 if (length16 == 0) { in ures_toUTF8String()
1294 if (capacity < length16) { in ures_toUTF8String()
1296 return u_strToUTF8(NULL, 0, pLength, s16, length16, status); in ures_toUTF8String()
1298 if (!forceCopy && (length16 <= 0x2aaaaaaa)) { in ures_toUTF8String()
1313 int32_t maxLength = 3 * length16 + 1; in ures_toUTF8String()
1319 return u_strToUTF8(dest, capacity, pLength, s16, length16, status); in ures_toUTF8String()
1328 int32_t length16; in ures_getUTF8String() local
1329 const UChar *s16 = ures_getString(resB, &length16, status); in ures_getUTF8String()
1330 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8String()
1650 int32_t length16; in ures_getUTF8StringByIndex() local
1651 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status); in ures_getUTF8StringByIndex()
1652 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByIndex()
2142 int32_t length16; in ures_getUTF8StringByKey() local
2143 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status); in ures_getUTF8StringByKey()
2144 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByKey()