Home | History | Annotate | Download | only in common

Lines Matching refs:length16

1185 ures_toUTF8String(const UChar *s16, int32_t length16,
1204 if (length16 == 0) {
1217 if (capacity < length16) {
1219 return u_strToUTF8(NULL, 0, pLength, s16, length16, status);
1221 if (!forceCopy && (length16 <= 0x2aaaaaaa)) {
1236 int32_t maxLength = 3 * length16 + 1;
1242 return u_strToUTF8(dest, capacity, pLength, s16, length16, status);
1251 int32_t length16;
1252 const UChar *s16 = ures_getString(resB, &length16, status);
1253 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);
1573 int32_t length16;
1574 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status);
1575 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);
1938 int32_t length16;
1939 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status);
1940 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);