Home | History | Annotate | Download | only in common

Lines Matching full:length16

1175 ures_toUTF8String(const UChar *s16, int32_t length16,
1194 if (length16 == 0) {
1207 if (capacity < length16) {
1209 return u_strToUTF8(NULL, 0, pLength, s16, length16, status);
1211 if (!forceCopy && (length16 <= 0x2aaaaaaa)) {
1226 int32_t maxLength = 3 * length16 + 1;
1232 return u_strToUTF8(dest, capacity, pLength, s16, length16, status);
1241 int32_t length16;
1242 const UChar *s16 = ures_getString(resB, &length16, status);
1243 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);
1563 int32_t length16;
1564 const UChar *s16 = ures_getStringByIndex(resB, idx, &length16, status);
1565 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);
1935 int32_t length16;
1936 const UChar *s16 = ures_getStringByKey(resB, key, &length16, status);
1937 return ures_toUTF8String(s16, length16, dest, pLength, forceCopy, status);