HomeSort by relevance Sort by last modified time
    Searched refs:length8 (Results 1 - 7 of 7) sorted by null

  /external/icu4c/common/
unisetspan.cpp 166 int32_t length8=0; local
167 u_strToUTF8(NULL, 0, &length8, s, length, &errorCode);
169 return length8;
181 int32_t length8=0; local
182 u_strToUTF8((char *)t, capacity, &length8, s, length, &errorCode);
184 return length8;
241 int32_t length8=getUTF8Length(s16, length16); local
242 utf8Length+=length8;
243 if(length8>maxLength8) {
244 maxLength8=length8;
327 int32_t length8=appendUTF8(s16, length16, s8, utf8Length-utf8Count); local
365 int32_t length8=appendUTF8(s16, length16, s8, utf8Length-utf8Count); local
975 int32_t length8; local
1155 int32_t length8; local
1447 int32_t length8; local
1490 int32_t length8; local
    [all...]
unistr.cpp 799 int32_t length8; local
801 u_strToUTF8WithSub(target, capacity, &length8,
806 return length8;
848 int32_t length8 = 0; local
850 u_strToUTF8WithSub(utf8, capacity, &length8,
856 utf8 = (char *)uprv_malloc(length8);
860 u_strToUTF8WithSub(utf8, length8, &length8,
870 sink.Append(utf8, length8);
    [all...]
ucnv.c 481 int32_t cloneSize, length8; local
487 length8 = ucnv_fromUChars(clone, chars, (int32_t)sizeof(chars), s, length, err);
521 length8 = length * U_SIZEOF_UCHAR;
528 if (length8 > UCNV_MAX_SUBCHAR_LEN) {
543 if (length8 == 0) {
546 uprv_memcpy(cnv->subChars, subChars, length8);
548 cnv->subCharLen = (int8_t)length8;
    [all...]
  /external/icu4c/test/cintltst/
ucnvseltst.c 449 int32_t length8, length16; local
451 s = text_nextString(&text, &length8);
457 s, length8,
461 s, length8,
466 verifyResult(ucnvsel_selectForUTF8(sel_rt, s, length8, &status), manual_rt);
467 verifyResult(ucnvsel_selectForUTF8(sel_fb, s, length8, &status), manual_fb);
472 u_strFromUTF8(utf16, LENGTHOF(utf16), &length16, s, length8, &status);
creststn.c 2828 int32_t length16, length8, i16, i8; local
2936 int32_t length8; local
    [all...]
  /external/icu4c/test/intltest/
usettest.cpp 2297 int32_t length8=0; local
2323 int32_t length8, utf8Count=0; local
2651 int32_t length8; local
2675 int32_t length8; local
2763 int32_t length8; local
2786 int32_t length8; local
3244 int32_t length8=(int32_t)(t-(char *)s8); local
    [all...]
ustrtest.cpp 254 int32_t length8=from16.extract(0, 0x7fffffff, buffer, (uint32_t)sizeof(buffer)); local
255 if(length8!=((int32_t)sizeof(utf8)-1) || 0!=uprv_memcmp(buffer, utf8, sizeof(utf8))) {
258 length8=from16.extract(1, 2, buffer, (uint32_t)sizeof(buffer));
259 if(length8!=4 || buffer[length8]!=0 || 0!=uprv_memcmp(buffer, utf8+1, length8)) {
    [all...]

Completed in 250 milliseconds