Lines Matching refs:tabs
1572 # Drop the diff line leader and expand tabs
2587 #convert leading spaces to tabs
3942 # at the beginning of a line any tabs must come first and anything
3943 # more than $tabsize must use tabs.
3949 "code indent should use tabs where possible\n" . $herevet) &&
3955 # check for space before tabs.
3959 "please, no space before tabs\n" . $herevet) &&
4214 my $tabs = length($1) + 1;
4215 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
4216 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
4218 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
4226 # and is indented the same # of tabs
4228 my $tabs = $1;
4229 if ($prevline =~ /^\+$tabs(goto|return|break)\b/) {
4362 "Too many leading tabs - consider code refactoring\n" . $herecurr);