Lines Matching refs:tabs
1485 # Drop the diff line leader and expand tabs
2500 #convert leading spaces to tabs
3735 # at the beginning of a line any tabs must come first and anything
3736 # more than $tabsize must use tabs.
3742 "code indent should use tabs where possible\n" . $herevet) &&
3748 # check for space before tabs.
3752 "please, no space before tabs\n" . $herevet) &&
4017 my $tabs = length($1) + 1;
4018 if ($prevline =~ /^\+\t{$tabs,$tabs}break\b/ ||
4019 ($prevline =~ /^\+\t{$tabs,$tabs}return\b/ &&
4021 $lines[$linenr] !~ /^[ \+]\t{$tabs,$tabs}return/)) {
4029 # and is indented the same # of tabs
4031 my $tabs = $1;
4032 if ($prevline =~ /^\+$tabs(goto|return|break)\b/) {
4165 "Too many leading tabs - consider code refactoring\n" . $herecurr);