/external/icu4c/io/ |
uscanf.h | 29 u_scanf_parse(UFILE *f,
|
ufile.h | 9 * File ufile.h 33 /* A UFILE */ 57 struct UFILE { 81 UFILE *f, 86 * Fill a UFILE's buffer with converted codepage data. 87 * @param f The UFILE containing the buffer to fill. 90 ufile_fill_uchar_buffer(UFILE *f); 94 * @param f The UFILE containing the characters. 99 ufile_getch(UFILE *f, UChar *ch); 103 * @param f The UFILE containing the characters [all...] |
ufile.c | 9 * File ufile.c 33 #include "ufile.h" 45 U_CAPI UFILE* U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */ 51 UFILE *result; 55 result = (UFILE*) uprv_malloc(sizeof(UFILE)); 60 uprv_memset(result, 0, sizeof(UFILE)); 109 U_CAPI UFILE* U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */ 115 UFILE *result; 135 U_CAPI UFILE* U_EXPORT [all...] |
uscanf.c | 27 #include "ufile.h" 35 u_fscanf(UFILE *f, 50 u_fscanf_u(UFILE *f, 65 u_vfscanf(UFILE *f, 98 u_vfscanf_u(UFILE *f,
|
uprintf.c | 32 #include "ufile.h" 42 return u_file_write(str, count, (UFILE *)context); 51 UFILE *output = (UFILE *)context; 81 u_fprintf( UFILE *f, 96 u_fprintf_u( UFILE *f, 111 u_vfprintf( UFILE *f, 149 u_vfprintf_u( UFILE *f,
|
ustdio.c | 24 #include "ufile.h" 62 u_fsettransliterator(UFILE *file, UFileDirection direction, 124 static const UChar * u_file_translit(UFILE *f, const UChar *src, int32_t *count, UBool flush) 230 ufile_flush_translit(UFILE *f) 242 ufile_close_translit(UFILE *f) 270 UFILE *f) 279 UFILE *f) 296 UFILE *f, 381 UFILE *f) 389 ufile_fill_uchar_buffer(UFILE *f [all...] |
uscanf_p.c | 30 #include "ufile.h" 284 * @param stream The UFILE to which to write output. 296 typedef int32_t (*u_scanf_handler) (UFILE *stream, 316 u_scanf_skip_leading_ws(UFILE *input, 338 u_scanf_skip_leading_positive_sign(UFILE *input, 374 u_scanf_simple_percent_handler(UFILE *input, 390 u_scanf_count_handler(UFILE *input, 414 u_scanf_double_handler(UFILE *input, 477 u_scanf_scientific_handler(UFILE *input, 540 u_scanf_scidbl_handler(UFILE *input [all...] |
sscanf.c | 26 #include "ufile.h" 102 UFILE inStr;
|
/external/icu4c/io/unicode/ |
ustdio.h | 38 * Each UFILE takes up at least 2KB. 77 * Make sure that a UFile opened with "rw" can be used after using 187 UFILE *out = u_finit(stdout, NULL, NULL); 206 typedef struct UFILE UFILE; 220 * Open a UFILE. 221 * A UFILE is a wrapper around a FILE* that is locale and codepage aware. 222 * That is, data written to a UFILE will be formatted using the conventions 223 * specified by that UFILE's Locale; this data will be in the character set 224 * specified by that UFILE's codepage [all...] |
/external/icu4c/samples/case/ |
case.cpp | 15 U_CFUNC int c_main(UFILE *out); 17 void printUnicodeString(UFILE *out, const UnicodeString &s) { 25 UFILE *out;
|
ucase.c | 21 int c_main(UFILE *out)
|
/external/icu4c/samples/uresb/ |
uresb.c | 50 static UFILE *outerr = NULL; 59 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status); 60 void printIndent(UFILE *out, int32_t indent); 61 void printHex(UFILE *out, const int8_t *what); 80 UFILE *out = NULL; 171 void printIndent(UFILE *out, int32_t indent) { 181 void printHex(UFILE *out, const int8_t *what) { 221 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status) {
|
/external/icu4c/test/iotest/ |
filetst.c | 27 static void TestFileFromICU(UFILE *myFile) { 332 UFILE *uStdIn = NULL; 333 UFILE *uStdOut = NULL; 353 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, NULL); 431 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, "UTF-16"); 564 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, "UTF-16"); 588 UFILE *myFile = NULL; 677 UFILE *myFile = NULL; 724 UFILE *myFile = NULL; 788 UFILE *myFile = NULL [all...] |
trnstst.c | 18 UFILE *f; 22 log_verbose("opening a transliterator and UFILE for testing\n"); 117 UFILE *f; 125 log_verbose("opening a transliterator and UFILE for testing\n"); 224 UFILE *f; 230 log_verbose("opening a transliterator and UFILE for testing\n");
|
iotest.cpp | 211 UFILE *testFile; 379 //UFILE *testFile; [all...] |
strtst.c | 254 UFILE *strFile = u_fstropen(testStr, sizeof(testStr)/sizeof(testStr[0]), "en_US"); 307 log_err("u_fstropen returned a UFILE* on a negative buffer size\n", numResult);
|
/external/icu4c/samples/ufortune/ |
ufortune.c | 65 UFILE *u_stdout; /* Unicode stdout file. */
|
/external/icu4c/samples/citer/ |
citer.cpp | 18 static UFILE *out;
|