Home
last modified time | relevance | path

Searched refs:targetcapacity (Results 1 – 1 of 1) sorted by relevance

/external/icu/icu4c/source/test/cintltst/
Dccapitst.c271 int32_t targetcapacity; in TestConvert() local
879targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
925targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
926 if (targetcapacity !=0) { in TestConvert()
931 targetcapacity = ucnv_fromUChars(NULL, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
932 if (targetcapacity !=0 || err != U_ILLEGAL_ARGUMENT_ERROR) { in TestConvert()
937targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, 0, &err); in TestConvert()
938 if (targetcapacity !=0) { in TestConvert()
942 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, 0, uchar1, -1, &err); in TestConvert()