• Home
  • Raw
  • Download

Lines Matching refs:myConverter

308     UConverter*         myConverter = 0;  in TestConvert()  local
593 myConverter =ucnv_open( "ibm-949", &err); in TestConvert()
594 if (!myConverter || U_FAILURE(err)) in TestConvert()
603 ucnv_getName(myConverter, &err); in TestConvert()
608 log_verbose("getName o.k. %s\n", ucnv_getName(myConverter, &err)); in TestConvert()
610 if (ctest_stricmp(ucnv_getName(myConverter, &err), CodePagesToTest[codepage_index])) in TestConvert()
619 name=ucnv_getName(myConverter, &err); in TestConvert()
630 if (ucnv_getMaxCharSize(myConverter)==CodePagesMaxChars[codepage_index]) in TestConvert()
636 if (ucnv_getMinCharSize(myConverter)==CodePagesMinChars[codepage_index]) in TestConvert()
645 ucnv_getSubstChars(myConverter, myptr, &ii, &err); in TestConvert()
658 ucnv_setSubstChars(myConverter, myptr, ii, &err); in TestConvert()
663 ucnv_getSubstChars(myConverter,save, &ii, &err); in TestConvert()
677 ucnv_getSubstChars(myConverter, myptr, &ii, &err); in TestConvert()
683 ucnv_getSubstChars(myConverter, myptr, &ii, &err); in TestConvert()
685 ucnv_setSubstChars(myConverter, myptr, 0, &err); in TestConvert()
691 ucnv_setSubstChars(myConverter, myptr, ii, &err); in TestConvert()
693 ucnv_getSubstChars(myConverter, save, &ii, &err); in TestConvert()
700 ucnv_setSubstChars(myConverter, myptr, ii, &err); in TestConvert()
702 ucnv_getSubstChars(myConverter, save, &ii, &err); in TestConvert()
712 ucnv_reset(myConverter); in TestConvert()
736 disnamelen = ucnv_getDisplayName(myConverter, locale, displayname, len, &err); in TestConvert()
740 ucnv_getDisplayName(myConverter,locale,displayname,disnamelen+1, &err); in TestConvert()
755 len=ucnv_getDisplayName(myConverter,locale,NULL,0, &err); in TestConvert()
768 ucnv_getFromUCallBack(myConverter, &MIA1, &MIA1Context); in TestConvert()
771 …ucnv_setFromUCallBack(myConverter, otherUnicodeAction(MIA1), &BOM, &oldFromUAction, &oldFromUConte… in TestConvert()
777 ucnv_getFromUCallBack(myConverter, &MIA1_2, &MIA1Context2); in TestConvert()
784 … ucnv_setFromUCallBack(myConverter,MIA1, MIA1Context, &oldFromUAction, &oldFromUContext, &err); in TestConvert()
790 ucnv_getFromUCallBack(myConverter, &MIA1_2, &MIA1Context2); in TestConvert()
799 …ucnv_setFromUCallBack(myConverter, otherUnicodeAction(MIA1), &BOM, &oldFromUAction, &oldFromUConte… in TestConvert()
800 ucnv_getFromUCallBack(myConverter, &MIA1_2, &MIA1Context2); in TestConvert()
808 ucnv_getToUCallBack(myConverter, &MIA2, &MIA2Context); in TestConvert()
811 … ucnv_setToUCallBack(myConverter,otherCharAction(MIA2), &BOM, &oldToUAction, &oldToUContext, &err); in TestConvert()
817 ucnv_getToUCallBack(myConverter, &MIA2_2, &MIA2Context2); in TestConvert()
824 ucnv_setToUCallBack(myConverter,MIA2, MIA2Context, &oldToUAction, &oldToUContext, &err); in TestConvert()
828 ucnv_getToUCallBack(myConverter, &MIA2_2, &MIA2Context2); in TestConvert()
837 … ucnv_setToUCallBack(myConverter,otherCharAction(MIA2), NULL, &oldToUAction, &oldToUContext, &err); in TestConvert()
838 ucnv_getToUCallBack(myConverter, &MIA2_2, &MIA2Context2); in TestConvert()
847 cp = ucnv_getCCSID(myConverter,&err); in TestConvert()
859 if( ucnv_getCCSID(myConverter,&err) != -1){ in TestConvert()
866 if (CodePagesPlatform[codepage_index]!=ucnv_getPlatform(myConverter, &err)) in TestConvert()
877 if(ucnv_getPlatform(myConverter, &err) != UCNV_UNKNOWN){ in TestConvert()
920 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
932 targetsize = ucnv_toUChars(myConverter, in TestConvert()
944 targetsize = ucnv_toUChars(myConverter, in TestConvert()
966 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, -1, &err); in TestConvert()
978 … targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, testLong1, uchar1, 0, &err); in TestConvert()
983 targetcapacity = ucnv_fromUChars(myConverter, output_cp_buffer, 0, uchar1, -1, &err); in TestConvert()
988 …targetsize = ucnv_toUChars(myConverter, uchar2, targetsize, output_cp_buffer, strlen(output_cp_buf… in TestConvert()
993 …targetsize = ucnv_toUChars(myConverter, uchar2, -1, output_cp_buffer, strlen(output_cp_buffer), &e… in TestConvert()
998 targetsize = ucnv_toUChars(myConverter, uchar2, 0, output_cp_buffer, 0, &err); in TestConvert()
1003 …targetsize = ucnv_toUChars(myConverter, NULL, targetcapacity2, output_cp_buffer, strlen(output_cp… in TestConvert()
1017 ucnv_fromUnicode(myConverter, &mytarget_1, in TestConvert()
1037 ucnv_toUnicode(myConverter, &my_ucs_file_buffer_1, in TestConvert()
1078 ucnv_close(myConverter); in TestConvert()