Lines Matching refs:ccs
250 my $ccs;
283 if defined $ccs;
285 $ccs = $2;
304 if (defined $ccs)
306 my @ccs = split / /, $ccs;
307 push @{$ccsenc{$_}}, $encoding foreach (@ccs);
331 my @ccs = sort keys %ccsenc;
332 generate_ccsbi_c (\@ccs);
698 my @ccs = sort keys %ccsenc;
718 foreach my $ccs (@ccs)
720 my @encs = sort @{$ccsenc{$ccs}};
728 print CCSBI_H "# define $macro_to_ucs_ccs\U$ccs\n";
738 print CCSBI_H "# define $macro_from_ucs_ccs\U$ccs\n";
746 foreach my $ccs (@ccs)
748 print CCSBI_H "#if defined ($macro_to_ucs_ccs\U$ccs) \\\n";
749 print CCSBI_H " || defined ($macro_from_ucs_ccs\U$ccs)\n";
751 print CCSBI_H "$var_ccs$ccs;\n";
852 my @ccs = @{$_[0]};
868 foreach my $ccs (@ccs)
870 print CESBI_C "#if defined ($macro_to_ucs_ccs\U$ccs) \\\n";
871 print CESBI_C " || defined ($macro_from_ucs_ccs\U$ccs)\n";
872 print CESBI_C " &$var_ccs$ccs,\n";
892 my @ccs = sort keys %ccsenc;
906 foreach my $ccs (@ccs)
908 my @encs = @{$ccsenc{$ccs}};
912 print CCSNAMES_H "#define $macro_ccs_name\U$ccs ";
913 if ($encoding eq $ccs)
920 print CCSNAMES_H "\"$ccs\"\n" if !$flag;