Lines Matching refs:codepage

409 # fill input data for the 20127 (us-ascii) codepage
731 my ($codepage, $has_glyphs, $name, $def, $defw) = @_;
787 printf OUTPUT "const struct sbcs_table cptable_%03d =\n{\n", $codepage;
789 $codepage, $def, $defw, $name;
802 my ($codepage, $name, $def, $defw, @lb_ranges) = @_;
895 printf OUTPUT "const struct dbcs_table cptable_%03d =\n{\n", $codepage;
897 $codepage, $def, $defw, $name;
1216 my ($codepage, $width, $def, $defw, $count);
1231 $codepage = $1;
1294 my $output = sprintf "c_%03d.c", $codepage;
1301 printf OUTPUT "/* code page %03d (%s) */\n", $codepage, $comment;
1306 if ($width == 1) { dump_sbcs_table( $codepage, $has_glyphs, $comment, $def, $defw ); }
1307 else { dump_dbcs_table( $codepage, $comment, $def, $defw, @lb_ranges ); }
1317 my ($codepage,$filename,$has_glyphs,$comment) = @_;
1323 # symbol codepage file is special
1324 if ($codepage == 20932) { READ_JIS0208_FILE($MAPPREFIX . $filename); }
1325 elsif ($codepage == 20127) { fill_20127_codepage(); }
1335 my $output = sprintf "c_%03d.c", $codepage;
1342 printf OUTPUT "/* code page %03d (%s) */\n", $codepage, $comment;
1354 if (!@lead_bytes) { dump_sbcs_table( $codepage, $has_glyphs, $comment, $DEF_CHAR, $DEF_CHAR ); }
1355 else { dump_dbcs_table( $codepage, $comment, $DEF_CHAR, $DEF_CHAR, get_lb_ranges() ); }
1378 # output the list of codepage tables into the cptable.c file
1385 my ($codepage,$filename,$comment) = @$file;
1386 push @tables_decl, sprintf("extern union cptable cptable_%03d;\n",$codepage);
1392 my ($codepage,$filename,$comment) = @$file;
1393 push @tables_decl, sprintf(" &cptable_%03d,\n", $codepage);