Home | History | Annotate | Download | only in cintltst

Lines Matching full:ucharsptr

3600     UChar *ucharsPtr = (UChar *)ucharAsCharBuffer;
3612 ucnv_fromUnicode(cnv, &charsPtr, charsPtr, (const UChar **)&ucharsPtr, ucharsBadPtr, NULL, TRUE, &errorCode);
3618 /* This one should fail because ucharsBadPtr is > than ucharsPtr */
3619 ucnv_fromUnicode(cnv, &charsPtr, charsPtr, (const UChar **)&ucharsBadPtr, ucharsPtr, NULL, TRUE, &errorCode);
3626 ucnv_toUnicode(cnv, &ucharsPtr, ucharsBadPtr, (const char **)&charsPtr, charsPtr, NULL, TRUE, &errorCode);
3632 /* This one should fail because ucharsBadPtr is > than ucharsPtr */
3633 ucnv_toUnicode(cnv, &ucharsBadPtr, ucharsPtr, (const char **)&charsPtr, charsPtr, NULL, TRUE, &errorCode);