/external/chromium_org/third_party/icu/source/test/perf/convperf/ |
convperf.h | 57 const char* sourceLimit = src + srcLen; 59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status); 103 const UChar* sourceLimit = src + srcLen; 105 ucnv_fromUnicode(conv,&myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
|
/external/icu4c/test/perf/convperf/ |
convperf.h | 57 const char* sourceLimit = src + srcLen; 59 ucnv_toUnicode(conv, &myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status); 103 const UChar* sourceLimit = src + srcLen; 105 ucnv_fromUnicode(conv,&myTarget, targetLimit, &mySrc, sourceLimit, NULL, TRUE, status);
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
ucnv_cb.h | 116 * @param sourceLimit pointer after last UChar to write 124 const UChar* sourceLimit,
|
ucnv.h | [all...] |
/external/icu4c/common/unicode/ |
ucnv_cb.h | 116 * @param sourceLimit pointer after last UChar to write 124 const UChar* sourceLimit,
|
ucnv.h | [all...] |
/external/chromium_org/third_party/icu/source/common/ |
ucnv2022.c | [all...] |
ucnv_lmb.c | 883 while (args->source < args->sourceLimit && !U_FAILURE(*err)) [all...] |
ucnvisci.c | [all...] |
ucnvhz.c | 159 const char *mySourceLimit = args->sourceLimit; 342 int32_t mySourceLength = (int32_t)(args->sourceLimit - args->source); 353 /*if ((args->converter == NULL) || (args->targetLimit < myTarget) || (args->sourceLimit < args->source)){
|
/external/icu4c/common/ |
ucnv2022.cpp | [all...] |
ucnv_lmb.c | 883 while (args->source < args->sourceLimit && !U_FAILURE(*err)) [all...] |
ucnvisci.c | [all...] |
ucnvhz.c | 159 const char *mySourceLimit = args->sourceLimit; 342 int32_t mySourceLength = (int32_t)(args->sourceLimit - args->source); 353 /*if ((args->converter == NULL) || (args->targetLimit < myTarget) || (args->sourceLimit < args->source)){
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
TextCodecICU.cpp | 296 int TextCodecICU::decodeToBuffer(UChar* target, UChar* targetLimit, const char*& source, const char* sourceLimit, int32_t* offsets, bool flush, UErrorCode& err) 300 ucnv_toUnicode(m_converterICU, &target, targetLimit, &source, sourceLimit, offsets, flush, &err); 359 const char* sourceLimit = source + length; 364 int ucharsDecoded = decodeToBuffer(buffer, bufferLimit, source, sourceLimit, offsets, flush, err); 371 decodeToBuffer(buffer, bufferLimit, source, sourceLimit, offsets, true, err); 372 } while (source < sourceLimit);
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
ncnvfbts.c | 146 const UChar *sourceLimit; 194 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd); 196 doFlush = (UBool)(sourceLimit == realSourceEnd); 203 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE"); 212 sourceLimit, 217 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (sourceLimit < realSourceEnd) );
|
nucnvtst.c | 370 const UChar *sourceLimit; 410 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd); 412 doFlush = (UBool)(sourceLimit == realSourceEnd); 418 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE"); 427 sourceLimit, 431 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && sourceLimit < realSourceEnd) ); [all...] |
ncnvtst.c | [all...] |
ccapitst.c | 457 int32_t targetLimit=0, sourceLimit=0, i=0, targetCapacity=0; 461 sourceLimit=sizeof(source)/sizeof(source[0]); 465 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", NULL, targetLimit , (const char*)source, sourceLimit, &err); 470 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err); 484 log_err("FAILURE! ucnv_convert() with sourceLimit=-1 failed: %s, returned %d instead of 7\n", 492 log_err("FAILURE! ucnv_convert() with sourceLimit=0 is expected to return 0\n"); 496 sourceLimit=sizeof(source)/sizeof(source[0]); 497 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err); 503 sourceLimit=sizeof(source)/sizeof(source[0]); 505 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err) [all...] |
/external/chromium_org/third_party/icu/source/tools/toolutil/ |
ucbuf.c | 169 const char* sourceLimit =NULL; 218 sourceLimit = source + inputRead; 220 &source,sourceLimit,NULL, 257 stop = (int32_t)(((pos+CONTEXT_LEN)<= (sourceLimit-cbuf) )? (pos+(CONTEXT_LEN-1)) : (sourceLimit-cbuf)); 289 &source,sourceLimit,NULL,
|
/external/icu4c/test/cintltst/ |
ncnvfbts.c | 146 const UChar *sourceLimit; 194 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd); 196 doFlush = (UBool)(sourceLimit == realSourceEnd); 203 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE"); 212 sourceLimit, 217 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (sourceLimit < realSourceEnd) );
|
nucnvtst.c | 389 const UChar *sourceLimit; 429 sourceLimit = nct_min(src + gInBufferSize, realSourceEnd); 431 doFlush = (UBool)(sourceLimit == realSourceEnd); 437 log_verbose("calling fromUnicode @ SOURCE:%08lx to %08lx TARGET: %08lx to %08lx, flush=%s\n", src,sourceLimit, targ,end, doFlush?"TRUE":"FALSE"); 446 sourceLimit, 450 } while ( (status == U_BUFFER_OVERFLOW_ERROR) || (U_SUCCESS(status) && sourceLimit < realSourceEnd) ); [all...] |
ncnvtst.c | [all...] |
ccapitst.c | 414 int32_t targetLimit=0, sourceLimit=0, i=0, targetCapacity=0; 418 sourceLimit=sizeof(source)/sizeof(source[0]); 422 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", NULL, targetLimit , (const char*)source, sourceLimit, &err); 427 targetCapacity=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err); 441 log_err("FAILURE! ucnv_convert() with sourceLimit=-1 failed: %s, returned %d instead of 7\n", 449 log_err("FAILURE! ucnv_convert() with sourceLimit=0 is expected to return 0\n"); 453 sourceLimit=sizeof(source)/sizeof(source[0]); 454 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err); 460 sourceLimit=sizeof(source)/sizeof(source[0]); 462 i=ucnv_convert("ibm-1364", "ibm-1363", target, targetLimit , (const char*)source, sourceLimit, &err) [all...] |
/external/icu4c/tools/toolutil/ |
ucbuf.c | 170 const char* sourceLimit =NULL; 219 sourceLimit = source + inputRead; 221 &source,sourceLimit,NULL, 258 stop = (int32_t)(((pos+CONTEXT_LEN)<= (sourceLimit-cbuf) )? (pos+(CONTEXT_LEN-1)) : (sourceLimit-cbuf)); 290 &source,sourceLimit,NULL,
|