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