Lines Matching refs:length16
1264 ures_toUTF8String(const UChar *s16, int32_t length16, in ures_toUTF8String() argument
1283 if (length16 == 0) { in ures_toUTF8String()
1296 if (capacity < length16) { in ures_toUTF8String()
1298 return u_strToUTF8(NULL, 0, pLength, s16, length16, status); in ures_toUTF8String()
1300 if (!forceCopy && (length16 <= 0x2aaaaaaa)) { in ures_toUTF8String()
1315 int32_t maxLength = 3 * length16 + 1; in ures_toUTF8String()
1321 return u_strToUTF8(dest, capacity, pLength, s16, length16, status); in ures_toUTF8String()
1330 int32_t length16; in ures_getUTF8String() local
1331 const UChar *s16 = ures_getString(resB, &length16, status); in ures_getUTF8String()
1332 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8String()
1653 int32_t length16; in ures_getUTF8StringByIndex() local
1654 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status); in ures_getUTF8StringByIndex()
1655 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByIndex()
2121 int32_t length16; in ures_getUTF8StringByKey() local
2122 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status); in ures_getUTF8StringByKey()
2123 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByKey()