Lines Matching refs:FILE
8 * File dumpce.cpp
72 static FILE *OUTPUT_;
120 * file
124 void serialize(FILE *f, const UChar *c)
138 * file
143 void serialize(FILE *f, const UChar *c, int l)
159 * @param f file output stream
162 void serialize(FILE *f, UCollationElements *iter) {
236 * @param f file output stream
243 void serialize(FILE *f, UChar *rule, int rlen, UBool contractiononly,
342 * Output the collation element belonging to the locale into a file
352 fprintf(OUTPUT_, "# This file contains the serialized collation elements\n");
474 * Output the collation element into a file
494 fprintf(stdout, "Cannot open file:%s\n", filename);
549 fprintf(stdout, "Cannot open file:%s\n", filename);
582 FILE *input = fopen(inputfilename, "r");
584 fprintf(stdout, "Cannot open file:%s\n", filename);
603 fprintf(stdout, "Cannot open file:%s\n", filename);
1247 * @param file output file
1257 * Serialize the codepoints from start to end into an html file.
1332 fprintf(OUTPUT_, "This file contains sorted characters in ascending order according to the locale stated\n");
1420 * @param file output file
1422 void outputListHTMLHeader(FILE *file)
1424 fprintf(file, "<html>\n");
1425 fprintf(file, "<head>\n");
1426 fprintf(file, "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n");
1427 fprintf(file, "<meta http-equiv=\"Content-Language\" content=\"en-us\">\n");
1428 fprintf(file, "<title>ICU Collation Charts</title>\n");
1429 fprintf(file, "<base target=\"main\">\n");
1430 fprintf(file, "</head>\n");
1431 fprintf(file, "<body bgcolor=#FFFFFF>\n");
1432 fprintf(file, "<h2 align=center>ICU Collation Charts</h2>\n");
1433 fprintf(file, "<p align=center>\n");
1434 fprintf(file, "<a href=http://www.unicode.org/charts/collation/ target=new>UCA Charts</a><br>");
1439 * @param file output file
1441 void outputListHTMLFooter(FILE *file)
1443 fprintf(file, "</p>\n");
1444 //fprintf(file, "<center><image src=http://oss.software.ibm.com/icu/images/w24.gif></center>\n");
1445 fprintf(file, "</body>\n");
1446 fprintf(file, "</html>\n");
1450 * Gets all scripts and serialize their codepoints into an html file.
1471 FILE *list = fopen(filename, "w");
1474 fprintf(stdout, "Cannot open file: %s\n", filename);
1511 fprintf(stdout, "Cannot open file:%s\n", filename);
1542 * Main -- process command line, read in and pre-process the test file,
1567 " Path for the input rule file for collation\n"
1571 " Name of file containing the collation rules.\n"