Home | History | Annotate | Download | only in intltest

Lines Matching refs:cnv

226         UConverter *cnv;
229 cnv=ucnv_open("ISO-8859-1", &errorCode);
230 UnicodeString v(cs, -1, cnv, errorCode);
231 ucnv_close(cnv);
233 errln("UnicodeString(const char *, length, cnv, errorCode) does not work with length==-1");
588 UConverter *cnv=ucnv_open("UTF-8", &errorCode);
593 if( (length=s.extract(NULL, 0, cnv, errorCode))!=13 ||
600 if( (length=s.extract(buffer, 2, cnv, errorCode))!=13 ||
609 if( s.extract(NULL, 2, cnv, errorCode)==13 || U_SUCCESS(errorCode)) {
613 if( s.extract(NULL, 0, cnv, errorCode)==13 || U_SUCCESS(errorCode)) {
619 if( (length=s.extract(buffer, sizeof(buffer), cnv, errorCode))!=13 ||
638 UnicodeString t(expect, sizeof(expect), cnv, errorCode);
644 ucnv_close(cnv);