Lines Matching refs:uchar1
267 UChar* uchar1 = 0; in TestConvert() local
866 uchar1=(UChar*)malloc(sizeof(UChar) * (i+1)); in TestConvert()
867 u_uastrcpy(uchar1,""); in TestConvert()
868 u_strncpy(uchar1,ucs_file_buffer,i); in TestConvert()
869 uchar1[i] = 0; in TestConvert()
879 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
915 if(u_strcmp(uchar1,uchar2)!=0) in TestConvert()
925 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
931 targetcapacity = ucnv_fromUChars(NULL, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
937 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, 0, &err); in TestConvert()
942 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, 0, uchar1, -1, &err); in TestConvert()
1018 if(u_strcmp(uchar1,uchar3)==0) in TestConvert()
1038 if (uchar1 != 0) free(uchar1); in TestConvert()