Home | History | Annotate | Download | only in cintltst

Lines Matching defs:dest32

2004     UChar32 dest32[4]={ 3, 3, 3, 3 };
2080 dest32[0]=3;
2083 u_strToUTF32(dest32, LENGTHOF(dest32), &length, NULL, 0, &errorCode);
2084 if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) {
2088 dest32[0]=3;
2091 u_strToUTF32WithSub(dest32, LENGTHOF(dest32), &length, NULL, 0, 0xfffd, NULL, &errorCode);
2092 if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) {