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 */
2709 c1=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2712 c2=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2715 c3=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2989 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
2993 log_err("%s ucnv_getNextUChar() failed: %s\n", message, u_errorName(errorCode));
3004 log_err("%s ucnv_getNextUChar() Expected: \\u%04X Got: \\u%04X \n",message,(uint32_t) (*r),c);
4731 * see javadoc for ucnv_getNextUChar() and implementation notes in ucnvmbcs.c .
4991 uniChar=ucnv_getNextUChar(cnv, &source, source + (off[1] - off[0]), &errorCode);
4993 log_err("LMBCS-1 ucnv_getNextUChar() failed: %s\n", u_errorName(errorCode));
4996 log_err("LMBCS-1 ucnv_getNextUChar() result %lx from %d bytes, should have been %lx from %d bytes.\n",
5178 uniChar = ucnv_getNextUChar(cnv, (const char **)&pLIn, (const char *)(pLIn-1), &errorCode);
5181 log_err("Unexpected Error on negative source request to ucnv_getNextUChar: %s\n", u_errorName(errorCode));
5196 uniChar = ucnv_getNextUChar(cnv, (const char **)&pLIn, (const char *)pLIn, &errorCode);
5199 log_err("Unexpected Error on 0-byte source request to ucnv_getnextUChar: %s\n", u_errorName(errorCode));
5203 log_err("Unexpected value on 0-byte source request to ucnv_getnextUChar \n");
5347 /*result = */ucnv_getNextUChar (cnv, &testBuffer, testEnd , &status);