Home | History | Annotate | Download | only in native

Lines Matching refs:conv

51     UConverter* conv=NULL;
58 conv = ucnv_open(cnvName,&errorCode);
66 return (jlong) conv;
113 UConverter* conv = (UConverter*)(long)handle;
116 if(conv) {
123 ucnv_setFromUCallBack(conv,
133 ucnv_setFromUCallBack(conv,
156 UConverter* conv = (UConverter*)handle;
159 if(conv) {
166 ucnv_setToUCallBack(conv,
176 ucnv_setToUCallBack(conv,
941 UConverter* conv = NULL;
943 conv = ucnv_open(encName+2, &error);
944 if(conv!=NULL) {
950 ucnv_close(conv);
1061 UConverter* conv = (UConverter*)handle;
1064 if(conv) {
1071 ucnv_getFromUCallBack(conv, &fromUOldAction, const_cast<const void**>(&fromUOldContext));
1099 ucnv_setFromUCallBack(conv,
1189 UConverter* conv = (UConverter*)handle;
1191 if(conv) {
1199 ucnv_getToUCallBack(conv, &toUOldAction, const_cast<const void**>(&toUOldContext));
1225 ucnv_setToUCallBack(conv,
1244 UConverter* conv = ucnv_safeClone(source, NULL, &bufferSize, &status);
1246 return reinterpret_cast<uintptr_t>(conv);