HomeSort by relevance Sort by last modified time
    Searched full:ufile (Results 1 - 25 of 33) sorted by null

1 2

  /external/icu4c/io/
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
23 #include "ufile.h"
35 static UFILE*
43 UFILE *result;
47 result = (UFILE*) uprv_malloc(sizeof(UFILE));
52 uprv_memset(result, 0, sizeof(UFILE));
104 U_CAPI UFILE* U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 */
112 U_CAPI UFILE* U_EXPORT2
120 U_CAPI UFILE* U_EXPORT2 /* U_CAPI ... U_EXPORT2 added by Peter Kirk 17 Nov 2001 *
    [all...]
uprintf.c 32 #include "ufile.h"
38 static UFILE *gStdOut = NULL;
49 U_CAPI UFILE * U_EXPORT2
64 return u_file_write(str, count, (UFILE *)context);
73 UFILE *output = (UFILE *)context;
103 u_fprintf( UFILE *f,
130 u_fprintf_u( UFILE *f,
157 u_vfprintf( UFILE *f,
195 u_vfprintf_u( UFILE *f
    [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,
uscanf.h 29 u_scanf_parse(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_flush_io(UFILE *f)
253 ufile_close_translit(UFILE *f)
281 UFILE *f)
290 UFILE *f)
307 UFILE *f,
392 UFILE *f
    [all...]
io.vcxproj.filters 30 <ClCompile Include="ufile.c">
62 <ClInclude Include="ufile.h">
sscanf.c 26 #include "ufile.h"
102 UFILE inStr;
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,
479 u_scanf_scientific_handler(UFILE *input,
576 u_scanf_scidbl_handler(UFILE *input
    [all...]
Makefile.in 61 OBJECTS = locbund.o ufile.o ufmt_cmn.o uprintf.o uprntf_p.o \
io.vcxproj 256 <ClCompile Include="ufile.c" />
273 <ClInclude Include="ufile.h" />
  /external/icu4c/io/unicode/
ustdio.h 39 * Each UFILE takes up at least 2KB.
78 * Make sure that a UFile opened with "rw" can be used after using
188 UFILE *out = u_finit(stdout, NULL, NULL);
207 typedef struct UFILE UFILE;
221 * Open a UFILE.
222 * A UFILE is a wrapper around a FILE* that is locale and codepage aware.
223 * That is, data written to a UFILE will be formatted using the conventions
224 * specified by that UFILE's Locale; this data will be in the character set
225 * 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/
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");
filetst.c 27 static void TestFileFromICU(UFILE *myFile) {
336 UFILE *uStdIn = NULL;
337 UFILE *uStdOut = NULL;
357 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, NULL);
435 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, "UTF-16");
568 UFILE *myFile = u_fopen(STANDARD_TEST_FILE, "w", NULL, "UTF-16");
592 UFILE *myFile = NULL;
681 UFILE *myFile = NULL;
728 UFILE *myFile = NULL;
792 UFILE *myFile = NULL
    [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);
iotest.cpp 386 //UFILE *testFile;
    [all...]
  /external/icu4c/samples/citer/
citer.cpp 18 static UFILE *out;
  /external/icu4c/samples/ufortune/
ufortune.c 65 UFILE *u_stdout; /* Unicode stdout file. */
  /external/ppp/pppd/
auth.c 410 FILE *ufile; local
422 ufile = fopen(fname, "r");
424 if (ufile == NULL) {
428 check_access(ufile, fname);
432 if (fgets(u, MAXNAMELEN - 1, ufile) == NULL
433 || fgets(p, MAXSECRETLEN - 1, ufile) == NULL) {
434 fclose(ufile);
438 fclose(ufile);
    [all...]
  /external/icu4c/tools/dumpce/
dumpce.cpp 121 * @param f UFILE instance to store
139 * @param f UFILE instance to store
    [all...]
  /external/icu4c/test/depstest/
dependencies.txt 888 locbund.o sprintf.o sscanf.o ufile.o ufmt_cmn.o uprintf.o uprntf_p.o uscanf.o uscanf_p.o ustdio.o
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
RandomAccessFileTest.java 34 public boolean ufile = true; field in class:RandomAccessFileTest
    [all...]

Completed in 576 milliseconds

1 2