Home | History | Annotate | Download | only in ucnv

Lines Matching refs:UChar

39 #include "unicode/uchar.h"    /* char names           */
47 static const UChar kNone[] = { 0x0000 };
51 /* Print a UChar if possible, in seven characters. */
52 void prettyPrintUChar(UChar c)
89 const UChar *uch = kNone,
156 UChar ch = (UChar)ch32;
165 This example first creates a UChar String out of the Unicode chars.
200 UChar source[] = { 0x041C, 0x043E, 0x0441, 0x043A, 0x0432,
295 UChar *uBuf;
296 UChar *target;
297 UChar *targetLimit;
298 UChar *p;
318 uBuf = (UChar*)malloc(uBufSize * sizeof(UChar));
495 prettyPrintUChar((UChar)p);
527 UChar target[100];
614 UChar uchars[100];
708 UChar uchars[100];
876 UChar *uBuf;
877 UChar *target;
878 UChar *targetLimit;
906 uBuf = (UChar*)malloc(uBufSize * sizeof(UChar));
978 UChar inBuf[BUFFERSIZE];
979 const UChar *source;
980 const UChar *sourceLimit;
1017 ((count=fread(inBuf, sizeof(UChar), BUFFERSIZE , f)) > 0) )
1056 printf("%d Uchars (%d bytes) in, %d chars out.\n", inchars, inchars * sizeof(UChar), total);
1082 UChar output[100];
1083 UChar *target = output, *out;