Home | History | Annotate | Download | only in bin

Lines Matching refs:tab_size

75 	my $tab_size = 4;
85 if (!GetOptions("tab-size=i" => \$tab_size,
124 genpng_process_file($filename, $out_filename, $width, $tab_size);
173 # genpng_process_file(filename, out_filename, width, tab_size)
181 my $tab_size = $_[3];
218 gen_png($out_filename, $width, $tab_size, @source);
223 # gen_png(filename, width, tab_size, source)
229 # image width. TAB_SIZE specifies the number of spaces to use as replacement
239 my $tab_size = shift(@_); # Replacement string for tab signs
290 $replacement = " "x($tab_size - ((length($1) - 1) %
291 $tab_size));