Lines Matching refs:length16
1296 ures_toUTF8String(const UChar *s16, int32_t length16, in ures_toUTF8String() argument
1315 if (length16 == 0) { in ures_toUTF8String()
1328 if (capacity < length16) { in ures_toUTF8String()
1330 return u_strToUTF8(NULL, 0, pLength, s16, length16, status); in ures_toUTF8String()
1332 if (!forceCopy && (length16 <= 0x2aaaaaaa)) { in ures_toUTF8String()
1347 int32_t maxLength = 3 * length16 + 1; in ures_toUTF8String()
1353 return u_strToUTF8(dest, capacity, pLength, s16, length16, status); in ures_toUTF8String()
1362 int32_t length16; in ures_getUTF8String() local
1363 const UChar *s16 = ures_getString(resB, &length16, status); in ures_getUTF8String()
1364 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8String()
1685 int32_t length16; in ures_getUTF8StringByIndex() local
1686 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status); in ures_getUTF8StringByIndex()
1687 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByIndex()
2153 int32_t length16; in ures_getUTF8StringByKey() local
2154 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status); in ures_getUTF8StringByKey()
2155 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByKey()