/external/icu/icu4c/source/common/ |
ucharstriebuilder.cpp | 88 uchars(NULL), ucharsCapacity(0), ucharsLength(0) {} 92 uprv_free(uchars); 148 newTrie=new UCharsTrie(uchars, uchars+(ucharsCapacity-ucharsLength)); 152 uchars=NULL; // The new trie now owns the array. 164 result.setTo(FALSE, uchars+(ucharsCapacity-ucharsLength), ucharsLength); 174 if(uchars!=NULL && ucharsLength>0) { 212 uprv_free(uchars); 213 uchars=static_cast<UChar *>(uprv_malloc(capacity*2)); 214 if(uchars==NULL) [all...] |
ucnv_cnv.c | 88 const UChar *uchars, int32_t length, 96 /* write UChars */ 99 *t++=*uchars++; 105 *t++=*uchars++; 119 *t++=*uchars++;
|
ucnv_cnv.h | 305 const UChar *uchars, int32_t length,
|
/external/icu/icu4c/source/common/unicode/ |
ucharstrie.h | 55 * The UCharsTrie object will not read more UChars than 106 State() { uchars=NULL; } 110 const UChar *uchars; member in class:UCharsTrie::State 123 state.uchars=uchars_; 140 if(uchars_==state.uchars && uchars_!=NULL) { 247 * @return the number of UChars which continue the string from here 260 * @param trieUChars The trie UChars.
|
ucharstriebuilder.h | 178 UChar *uchars; member in class:UCharsTrieBuilder
|
/external/icu/icu4c/source/tools/gennorm2/ |
gennorm2.cpp | 246 UChar uchars[Normalizer2Impl::MAPPING_LENGTH_MASK]; local 247 int32_t length=u_parseString(delimiter+1, uchars, UPRV_LENGTHOF(uchars), NULL, errorCode); 252 UnicodeString mapping(FALSE, uchars, length);
|
/external/icu/icu4c/source/samples/ucnv/ |
convsamp.cpp | 272 UChars as the input buffer has bytes. 316 printf("input bytes %d / min chars %d = %d UChars\n", 365 printf("%d letters out of %d total UChars.\n", letters, total); 433 printf("input bytes %d / min chars %d = %d UChars\n", 481 printf("%d letters out of %d total UChars.\n", letters, total); 603 printf("src=%d bytes, dst=%d uchars\n", srcCount, dstCount); 614 UChar uchars[100]; local 634 len = ucnv_toUChars(conv, uchars, 100, source, strlen(source), &status); 637 printUChars("uch", uchars, len); 662 len2 = ucnv_fromUChars(conv, bytes, 100, uchars, len, &status) 708 UChar uchars[100]; local [all...] |
/external/icu/icu4c/source/samples/date/ |
date.c | 226 static int32_t charsToUCharsDefault(UChar *uchars, int32_t ucharsSize, const char*chars, int32_t charsSize, UErrorCode *status) { 233 len = ucnv_toUChars(cnv, uchars, ucharsSize, chars,charsSize, status);
|
/external/icu/icu4c/source/tools/makeconv/ |
gencnvex.c | 701 * output section consists of two arrays, one for input UChars and one 715 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]; [all...] |
/external/icu/icu4c/source/test/intltest/ |
ustrtest.cpp | 1933 UChar uchars[]={ 0x61, 0x62, 0 }; local [all...] |
/external/icu/icu4c/source/test/cintltst/ |
utf16tst.c | 24 static void printUChars(const UChar *uchars); 795 static void printUChars(const UChar *uchars){ 797 for(i=0; i<u_strlen(uchars); i++){ 798 printf("%x ", *(uchars+i));
|
custrtst.c | 437 /* There are at least 2 UChars in each string - verify that strncmp()==memcmp(). */ 970 UChar uchars[]={0x61, 0x62, 0x63, 0x00}; local [all...] |
utf8tst.c | 59 static void printUChars(const uint8_t *uchars, int16_t len); [all...] |
custrtrn.c | 963 static const UChar uchars[]={ local [all...] |
/external/icu/icu4c/source/data/ |
Makefile.in | 553 $(INVOKE) $(TOOLBINDIR)/gendict --uchars -c -i $(BUILDDIR) $(BRKSRCDIR)/$(*F).txt $@ [all...] |
makedata.mak | 763 @"$(ICUTOOLS)\gendict\$(CFG)\gendict" -c --uchars $< "$(ICUBLD_PKG)\$@" [all...] |