Searched refs:ucnv_getNextUChar (Results 1 - 8 of 8) sorted by relevance

/external/icu/icu4c/source/samples/ucnv/
H A Dconvsamp.cpp446 p = ucnv_getNextUChar(conv, &source, sourceLimit, &status);
589 target = ucnv_getNextUChar (conv,
/external/icu/icu4c/source/common/unicode/
H A Ducnv.h1202 * @see ucnv_getNextUChar
1293 * This makes ucnv_getNextUChar() unsuitable for "streaming" conversion,
1295 * because ucnv_getNextUChar() will assume the end of the input at the end
1299 * It is possible to "mix" ucnv_getNextUChar() and ucnv_toUnicode() because
1300 * ucnv_getNextUChar() uses the current state of the converter
1302 * However, if ucnv_getNextUChar() is called after ucnv_toUnicode()
1304 * then ucnv_getNextUChar() will always use the slower ucnv_toUnicode()
1306 * (This is new in ICU 2.6. In earlier releases, ucnv_getNextUChar() had to
1309 * Instead of using ucnv_getNextUChar(), it is recommended
1351 ucnv_getNextUChar(UConverte
[all...]
H A Durename.h646 #define ucnv_getNextUChar U_ICU_ENTRY_POINT_RENAME(ucnv_getNextUChar) macro
/external/icu/icu4c/source/test/cintltst/
H A Dnucnvtst.c184 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
188 log_err("%s ucnv_getNextUChar() failed: %s\n", message, u_errorName(errorCode));
195 log_err("%s ucnv_getNextUChar() result %lx from %d bytes, should have been %lx from %d bytes.\n",
209 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
261 /* test ucnv_getNextUChar() for charsets that encode single surrogates with complete byte sequences */
2694 c1=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2697 c2=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2700 c3=ucnv_getNextUChar(cnv, &source, sourceLim, &status);
2974 c=ucnv_getNextUChar(cnv, &s, limit, &errorCode);
2978 log_err("%s ucnv_getNextUChar() faile
[all...]
H A Dccapitst.c675 c=ucnv_getNextUChar(cnv, &source, limit, &err);
677 log_err("ucnv_getNextUChar() failed: %s\n", u_errorName(err));
1873 if (uniBuffer [0] != ucnv_getNextUChar(cnv2, &pConstCharBuffer, pCharBuffer, &err))
H A Dncnvtst.c693 c=ucnv_getNextUChar(cnv, &source, source + INPUT_SIZE, &err);
/external/icu/icu4c/source/common/
H A Ducnv.c1836 /* ucnv_getNextUChar() ------------------------------------------------------ */
1839 ucnv_getNextUChar(UConverter *cnv, function
1909 * flush==TRUE is implied for ucnv_getNextUChar()
/external/icu/icu4c/source/test/intltest/
H A Dconvtest.cpp942 * step==-1: call only ucnv_getNextUChar()
943 * otherwise alternate between ucnv_toUnicode() and ucnv_getNextUChar()
958 c=ucnv_getNextUChar(cnv, &source, bytesLimit, pErrorCode);
996 // as with ucnv_getNextUChar(), we always flush (if we go to bytesLimit)
1095 // skip ucnv_getNextUChar() if !finalFlush because
1096 // ucnv_getNextUChar() always implies flush

Completed in 141 milliseconds