Searched defs:uchars (Results 1 - 12 of 12) sorted by relevance

/external/icu4c/common/
H A Ducnv_cnv.c88 const UChar *uchars, int32_t length,
99 *t++=*uchars++;
105 *t++=*uchars++;
119 *t++=*uchars++;
87 ucnv_toUWriteUChars(UConverter *cnv, const UChar *uchars, int32_t length, UChar **target, const UChar *targetLimit, int32_t **offsets, int32_t sourceIndex, UErrorCode *pErrorCode) argument
/external/icu4c/common/unicode/
H A Ducharstriebuilder.h167 UChar *uchars; member in class:UCharsTrieBuilder
H A Ducharstrie.h106 State() { uchars=NULL; }
110 const UChar *uchars; member in class:UCharsTrie::State
123 state.uchars=uchars_;
140 if(uchars_==state.uchars && uchars_!=NULL) {
/external/icu4c/tools/gennorm2/
H A Dgennorm2.cpp235 UChar uchars[Normalizer2Impl::MAPPING_LENGTH_MASK]; local
236 int32_t length=u_parseString(delimiter+1, uchars, LENGTHOF(uchars), NULL, errorCode);
241 UnicodeString mapping(FALSE, uchars, length);
/external/icu4c/i18n/
H A Ducol_elm.h64 UChar uchars[128]; member in struct:__anon5346
/external/icu4c/test/cintltst/
H A Dutf16tst.c26 static void printUChars(const UChar *uchars);
729 static void printUChars(const UChar *uchars){ argument
731 for(i=0; i<u_strlen(uchars); i++){
732 printf("%x ", *(uchars+i));
H A Dutf8tst.c61 static void printUChars(const uint8_t *uchars, int16_t len);
951 static void printUChars(const uint8_t *uchars, int16_t len){ argument
954 log_err("0x%02x ", *(uchars+i));
H A Dcustrtrn.c952 static const UChar uchars[]={ local
1016 for(pb=(const char *)bytes, pu=uchars;
H A Dcustrtst.c975 UChar uchars[]={0x61, 0x62, 0x63, 0x00}; local
982 if(u_strcmp(temp, uchars) != 0) {
983 log_err("There is an error in u_uastrcpy() Expected %s Got %s\n", austrdup(uchars), austrdup(temp));
992 if(u_strncmp(uchars, temp, 3) != 0){
993 log_err("There is an error in u_uastrncpy() Expected %s Got %s\n", austrdup(uchars), austrdup(temp));
1014 log_err("There is an error in u_austrncpy() Expected %s Got %s\n", austrdup(uchars), austrdup(temp));
/external/icu4c/samples/ucnv/
H A Dconvsamp.cpp608 printf("src=%d bytes, dst=%d uchars\n", srcCount, dstCount);
619 UChar uchars[100]; local
639 len = ucnv_toUChars(conv, uchars, 100, source, strlen(source), &status);
642 printUChars("uch", uchars, len);
667 len2 = ucnv_fromUChars(conv, bytes, 100, uchars, len, &status);
713 UChar uchars[100]; local
740 len = ucnv_toUChars(conv, uchars, 100, source, strlen(source), &status);
743 printUChars("uch", uchars, len);
822 len2 = ucnv_fromUChars(cloneCnv, bytes, 100, uchars, len, &status);
/external/icu4c/tools/makeconv/
H A Dgencnvex.c715 UChar *uchars; local
726 uchars=(UChar *)UCM_GET_CODE_POINTS(table, m);
727 low=uchars[unitIndex];
733 uchars=(UChar *)UCM_GET_CODE_POINTS(table, m);
734 high=uchars[unitIndex];
759 uchars=(UChar *)UCM_GET_CODE_POINTS(table, m);
760 high=uchars[unitIndex];
/external/icu4c/test/intltest/
H A Dustrtest.cpp1929 static UnicodeString wrapUChars(const UChar *uchars) { argument
1930 return UnicodeString(TRUE, uchars, -1);
1935 UChar uchars[]={ 0x61, 0x62, 0 }; local
1936 UnicodeString alias(TRUE, uchars, 2);
1937 if(alias.length()!=2 || alias.getBuffer()!=uchars || alias.getTerminatedBuffer()!=uchars) {
1942 if(alias.length()!=1 || alias.getBuffer()!=uchars) {
1945 if(alias.getTerminatedBuffer()==uchars) {
1949 if(uchars[1]!=0x62) {
1958 alias.setTo(TRUE, uchars,
[all...]

Completed in 1245 milliseconds