Home | History | Annotate | Download | only in cintltst

Lines Matching refs:errorCode

79     UErrorCode errorCode = U_ZERO_ERROR;
103 u_init(&errorCode);
104 if (U_FAILURE(errorCode)) {
106 "#### Note: ICU Init without build-specific setDataDirectory() failed. %s\n", u_errorName(errorCode));
120 errorCode = U_ZERO_ERROR;
126 u_init(&errorCode);
127 if (U_FAILURE(errorCode)) {
131 "*** check that the data files are present.\n", argv[0], u_errorName(errorCode));
142 cnv = ucnv_open(TRY_CNV_2, &errorCode);
158 rb = ures_open(NULL, "en", &errorCode);
159 if(U_SUCCESS(errorCode)) {
174 errorCode = U_ZERO_ERROR;
175 rb = ures_open(NULL, NULL, &errorCode);
176 if(U_SUCCESS(errorCode)) {
178 if (errorCode == U_USING_DEFAULT_WARNING || errorCode == U_USING_FALLBACK_WARNING) {
494 UErrorCode errorCode = U_ZERO_ERROR;
504 UConverter* conv = ucnv_open(convName, &errorCode);
511 ucnv_setFromUCallBack(conv, UCNV_FROM_U_CALLBACK_ESCAPE, UCNV_ESCAPE_C, &cb, &p, &errorCode);
512 ucnv_fromUnicode(conv,&target,targetLimit, &unichars, (UChar*)(unichars+length),NULL,TRUE,&errorCode);