Lines Matching refs:length16
1174 ures_toUTF8String(const UChar *s16, int32_t length16, in ures_toUTF8String() argument
1193 if (length16 == 0) { in ures_toUTF8String()
1206 if (capacity < length16) { in ures_toUTF8String()
1208 return u_strToUTF8(NULL, 0, pLength, s16, length16, status); in ures_toUTF8String()
1210 if (!forceCopy && (length16 <= 0x2aaaaaaa)) { in ures_toUTF8String()
1225 int32_t maxLength = 3 * length16 + 1; in ures_toUTF8String()
1231 return u_strToUTF8(dest, capacity, pLength, s16, length16, status); in ures_toUTF8String()
1240 int32_t length16; in ures_getUTF8String() local
1241 const UChar *s16 = ures_getString(resB, &length16, status); in ures_getUTF8String()
1242 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8String()
1562 int32_t length16; in ures_getUTF8StringByIndex() local
1563 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status); in ures_getUTF8StringByIndex()
1564 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByIndex()
1894 int32_t length16; in ures_getUTF8StringByKey() local
1895 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status); in ures_getUTF8StringByKey()
1896 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status); in ures_getUTF8StringByKey()