Home | History | Annotate | Download | only in uconv

Lines Matching refs:UChar

35 uprint(const UChar *s,
43 const UChar *mySource;
44 const UChar *mySourceEnd;
125 const UChar *msg;
131 UChar result[4096];
200 UChar **gInfoMessages = NULL;
202 UChar **gErrMessages = NULL;
204 static const UChar *fetchErrorName(UErrorCode err)
207 gInfoMessages = (UChar **)malloc((U_ERROR_WARNING_LIMIT-U_ERROR_WARNING_START)*sizeof(UChar*));
208 memset(gInfoMessages, 0, (U_ERROR_WARNING_LIMIT-U_ERROR_WARNING_START)*sizeof(UChar*));
211 gErrMessages = (UChar **)malloc(U_ERROR_LIMIT*sizeof(UChar*));
212 memset(gErrMessages, 0, U_ERROR_LIMIT*sizeof(UChar*));
220 U_CFUNC const UChar *u_wmsg_errorName(UErrorCode err)
222 UChar *msg;
228 msg = (UChar*)fetchErrorName(err);
243 msg = (UChar*)ures_getStringByKey(gBundle, errname, &msgLen, &subErr);
259 msg = (UChar*)malloc((strlen(textMsg)+1)*sizeof(msg[0]));