Lines Matching refs:length16
1307 ures_toUTF8String(const UChar *s16, int32_t length16, in ures_toUTF8String() argument
1326 if (length16 == 0) { in ures_toUTF8String()
1339 if (capacity < length16) { in ures_toUTF8String()
1341 return u_strToUTF8(NULL, 0, pLength, s16, length16, status); in ures_toUTF8String()
1343 if (!forceCopy && (length16 <= 0x2aaaaaaa)) { in ures_toUTF8String()
1358 int32_t maxLength = 3 * length16 + 1; in ures_toUTF8String()
1364 return u_strToUTF8(dest, capacity, pLength, s16, length16, status); in ures_toUTF8String()
1373 int32_t length16; in ures_getUTF8String() local
1374 const UChar *s16 = ures_getString(resB, &length16, status); in ures_getUTF8String()
1375 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8String()
1704 int32_t length16; in ures_getUTF8StringByIndex() local
1705 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status); in ures_getUTF8StringByIndex()
1706 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByIndex()
2202 int32_t length16; in ures_getUTF8StringByKey() local
2203 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status); in ures_getUTF8StringByKey()
2204 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByKey()