Home | History | Annotate | Download | only in intltest

Lines Matching defs:cnv

228         UConverter *cnv;
231 cnv=ucnv_open("ISO-8859-1", &errorCode);
232 UnicodeString v(cs, -1, cnv, errorCode);
233 ucnv_close(cnv);
235 errln("UnicodeString(const char *, length, cnv, errorCode) does not work with length==-1");
590 UConverter *cnv=ucnv_open("UTF-8", &errorCode);
595 if( (length=s.extract(NULL, 0, cnv, errorCode))!=13 ||
602 if( (length=s.extract(buffer, 2, cnv, errorCode))!=13 ||
611 if( s.extract(NULL, 2, cnv, errorCode)==13 || U_SUCCESS(errorCode)) {
615 if( s.extract(NULL, 0, cnv, errorCode)==13 || U_SUCCESS(errorCode)) {
621 if( (length=s.extract(buffer, sizeof(buffer), cnv, errorCode))!=13 ||
640 UnicodeString t(expect, sizeof(expect), cnv, errorCode);
646 ucnv_close(cnv);