Home | History | Annotate | Download | only in cintltst

Lines Matching refs:ucnv_getNextUChar

186         c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
190 log_err("%s ucnv_getNextUChar() failed: %s\n", message, u_errorName(errorCode));
197 log_err("%s ucnv_getNextUChar() result %lx from %d bytes, should have been %lx from %d bytes.\n",
211 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
263 /* test ucnv_getNextUChar() for charsets that encode single surrogates with complete byte sequences */
2711 c1=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2714 c2=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2717 c3=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2991 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
2995 log_err("%s ucnv_getNextUChar() failed: %s\n", message, u_errorName(errorCode));
3006 log_err("%s ucnv_getNextUChar() Expected: \\u%04X Got: \\u%04X \n",message,(uint32_t) (*r),c);
4733 * see javadoc for ucnv_getNextUChar() and implementation notes in ucnvmbcs.c .
4993 uniChar=ucnv_getNextUChar(cnv, &source, source + (off[1] - off[0]), &errorCode);
4995 log_err("LMBCS-1 ucnv_getNextUChar() failed: %s\n", u_errorName(errorCode));
4998 log_err("LMBCS-1 ucnv_getNextUChar() result %lx from %d bytes, should have been %lx from %d bytes.\n",
5180 uniChar = ucnv_getNextUChar(cnv, (const char **)&pLIn, (const char *)(pLIn-1), &errorCode);
5183 log_err("Unexpected Error on negative source request to ucnv_getNextUChar: %s\n", u_errorName(errorCode));
5198 uniChar = ucnv_getNextUChar(cnv, (const char **)&pLIn, (const char *)pLIn, &errorCode);
5201 log_err("Unexpected Error on 0-byte source request to ucnv_getnextUChar: %s\n", u_errorName(errorCode));
5205 log_err("Unexpected value on 0-byte source request to ucnv_getnextUChar \n");
5349 /*result = */ucnv_getNextUChar (cnv, &testBuffer, testEnd , &status);