Searched refs:ucnv_getNextUChar (Results 1 - 8 of 8) sorted by relevance
/external/icu/icu4c/source/samples/ucnv/ |
H A D | convsamp.cpp | 446 p = ucnv_getNextUChar(conv, &source, sourceLimit, &status); 589 target = ucnv_getNextUChar (conv,
|
/external/icu/icu4c/source/common/unicode/ |
H A D | ucnv.h | 1202 * @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 D | urename.h | 646 #define ucnv_getNextUChar U_ICU_ENTRY_POINT_RENAME(ucnv_getNextUChar) macro
|
/external/icu/icu4c/source/test/cintltst/ |
H A D | nucnvtst.c | 184 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 D | ccapitst.c | 675 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 D | ncnvtst.c | 693 c=ucnv_getNextUChar(cnv, &source, source + INPUT_SIZE, &err);
|
/external/icu/icu4c/source/common/ |
H A D | ucnv.c | 1836 /* ucnv_getNextUChar() ------------------------------------------------------ */ 1839 ucnv_getNextUChar(UConverter *cnv, function 1909 * flush==TRUE is implied for ucnv_getNextUChar()
|
/external/icu/icu4c/source/test/intltest/ |
H A D | convtest.cpp | 942 * 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