Searched refs:targetcapacity (Results 1 – 1 of 1) sorted by relevance
/external/icu/icu4c/source/test/cintltst/ |
D | ccapitst.c | 274 int32_t targetcapacity; in TestConvert() local 882 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert() 928 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert() 929 if (targetcapacity !=0) { in TestConvert() 934 targetcapacity = ucnv_fromUChars(NULL, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert() 935 if (targetcapacity !=0 || err != U_ILLEGAL_ARGUMENT_ERROR) { in TestConvert() 940 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, 0, &err); in TestConvert() 941 if (targetcapacity !=0) { in TestConvert() 945 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, 0, uchar1, -1, &err); in TestConvert()
|