Home | History | Annotate | Download | only in css

Lines Matching refs:OUT

29 my $out = $ARGV[0];
33 open OUT, ">", $out or die;
36 print OUT "namespace WebCore {\n";
58 # Write out a C array of the characters.
61 print OUT "extern const char ${name}UserAgentStyleSheet[${length}] = {\n";
64 print OUT " ";
67 print OUT ", " unless $j == 0;
68 print OUT ord substr $text, $i, 1;
72 print OUT "," unless $i == $length;
73 print OUT "\n";
75 print OUT "};\n";
80 print OUT "}\n";