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

  /external/icu/icu4c/source/io/unicode/
ustdio.h 44 * Each UFILE takes up at least 2KB.
83 * Make sure that a UFile opened with "rw" can be used after using
193 UFILE *out = u_finit(stdout, NULL, NULL);
212 typedef struct UFILE UFILE;
226 * Open a UFILE.
227 * A UFILE is a wrapper around a FILE* that is locale and codepage aware.
228 * That is, data written to a UFILE will be formatted using the conventions
229 * specified by that UFILE's Locale; this data will be in the character set
230 * specified by that UFILE's codepage
    [all...]
  /external/icu/icu4c/source/io/
uscanf.h 31 u_scanf_parse(UFILE *f,
ufile.h 11 * File ufile.h
38 /* A UFILE */
62 struct UFILE {
86 UFILE *f,
91 * Fill a UFILE's buffer with converted codepage data.
92 * @param f The UFILE containing the buffer to fill.
95 ufile_fill_uchar_buffer(UFILE *f);
99 * @param f The UFILE containing the characters.
104 ufile_getch(UFILE *f, UChar *ch);
108 * @param f The UFILE containing the characters
    [all...]
ufile.c 11 * File ufile.c
35 #include "ufile.h"
48 static UFILE*
56 UFILE *result;
60 result = (UFILE*) uprv_malloc(sizeof(UFILE));
65 uprv_memset(result, 0, sizeof(UFILE));
129 U_CAPI UFILE* U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
137 U_CAPI UFILE* U_EXPORT2
145 U_CAPI UFILE* U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 *
    [all...]
uscanf.c 29 #include "ufile.h"
37 u_fscanf(UFILE *f,
52 u_fscanf_u(UFILE *f,
67 u_vfscanf(UFILE *f,
100 u_vfscanf_u(UFILE *f,
uprintf.cpp 38 #include "ufile.h"
43 static UFILE *gStdOut = NULL;
62 U_CAPI UFILE * U_EXPORT2
74 return u_file_write(str, count, (UFILE *)context);
83 UFILE *output = (UFILE *)context;
113 u_fprintf( UFILE *f,
140 u_fprintf_u( UFILE *f,
167 u_vfprintf( UFILE *f,
205 u_vfprintf_u( UFILE *f
    [all...]
ustdio.c 29 #include "ufile.h"
67 u_fsettransliterator(UFILE *file, UFileDirection direction,
129 static const UChar * u_file_translit(UFILE *f, const UChar *src, int32_t *count, UBool flush)
235 ufile_flush_translit(UFILE *f)
247 ufile_flush_io(UFILE *f)
258 ufile_close_translit(UFILE *f)
286 UFILE *f)
295 UFILE *f)
312 UFILE *f,
397 UFILE *f
    [all...]
uscanf_p.c 32 #include "ufile.h"
286 * @param stream The UFILE to which to write output.
298 typedef int32_t (*u_scanf_handler) (UFILE *stream,
318 u_scanf_skip_leading_ws(UFILE *input,
340 u_scanf_skip_leading_positive_sign(UFILE *input,
376 u_scanf_simple_percent_handler(UFILE *input,
392 u_scanf_count_handler(UFILE *input,
416 u_scanf_double_handler(UFILE *input,
481 u_scanf_scientific_handler(UFILE *input,
578 u_scanf_scidbl_handler(UFILE *input
    [all...]
sscanf.c 28 #include "ufile.h"
104 UFILE inStr;
  /external/icu/icu4c/source/samples/case/
case.cpp 21 U_CFUNC int c_main(UFILE *out);
23 void printUnicodeString(UFILE *out, const UnicodeString &s) {
31 UFILE *out;
ucase.c 27 int c_main(UFILE *out)
  /external/icu/icu4c/source/samples/uresb/
uresb.c 56 static UFILE *outerr = NULL;
65 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status);
66 void printIndent(UFILE *out, int32_t indent);
67 void printHex(UFILE *out, const int8_t *what);
86 UFILE *out = NULL;
177 void printIndent(UFILE *out, int32_t indent) {
187 void printHex(UFILE *out, const int8_t *what) {
227 void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, UErrorCode *status) {
  /external/icu/icu4c/source/tools/genrb/
derb.cpp 48 static void printOutBundle(UFILE *out, UResourceBundle *resource, int32_t indent, const char *pname, UErrorCode *status);
49 static void printString(UFILE *out, const UChar *str, int32_t len);
50 static void printCString(UFILE *out, const char *str, int32_t len);
51 static void printIndent(UFILE *out, int32_t indent);
52 static void printHex(UFILE *out, uint8_t what);
71 static UFILE *ustderr = NULL;
240 UFILE *out = NULL;
359 static void printString(UFILE *out, const UChar *str, int32_t len) {
363 static void printCString(UFILE *out, const char *str, int32_t len) {
371 static void printIndent(UFILE *out, int32_t indent)
    [all...]
  /external/icu/icu4c/source/samples/dtitvfmtsample/
dtitvfmtsample.cpp 26 UFILE *out = u_finit(stdout, NULL, "UTF-8");
88 UFILE *out = u_finit(stdout, NULL, "UTF-8");
  /external/icu/icu4c/source/samples/dtptngsample/
dtptngsample.cpp 43 UFILE* f = u_fopen(filename, "w", NULL,"UTF-8");
123 UFILE *out = u_finit(stdout, NULL, "UTF-8");
  /external/icu/icu4c/source/test/iotest/
trnstst.c 21 UFILE *f;
25 log_verbose("opening a transliterator and UFILE for testing\n");
120 UFILE *f;
128 log_verbose("opening a transliterator and UFILE for testing\n");
227 UFILE *f;
233 log_verbose("opening a transliterator and UFILE for testing\n");
filetst.c 32 static void TestFileFromICU(UFILE *myFile) {
345 UFILE *uStdIn = NULL;
346 UFILE *uStdOut = NULL;
366 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, NULL);
444 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, "UTF-16");
577 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, "UTF-16");
601 UFILE *myFile = NULL;
690 UFILE *myFile = NULL;
737 UFILE *myFile = NULL;
801 UFILE *myFile = NULL
    [all...]
strtst.c 257 UFILE *strFile = u_fstropen(testStr, UPRV_LENGTHOF(testStr), "en_US");
310 log_err("u_fstropen returned a UFILE* on a negative buffer size\n", numResult);
  /external/icu/icu4c/source/samples/ufortune/
ufortune.c 71 UFILE *u_stdout; /* Unicode stdout file. */
  /external/icu/icu4c/source/samples/citer/
citer.cpp 24 static UFILE *out;

Completed in 156 milliseconds