Lines Matching refs:indent
1489 # Pick the indent from the front of the line.
2570 my $indent;
2768 # Measure the line length and indent.
2769 ($length, $indent) = line_stats($rawline);
2773 ($previndent, $stashindent) = ($stashindent, $indent);
3742 "code indent should use tabs where possible\n" . $herevet) &&
3790 my $indent = length($1);
3791 if ($indent % $tabsize) {
3795 $fixed[$fixlinenr] =~ s@(^\+\t+) +@$1 . "\t" x ($indent/$tabsize)@e;
4134 # statements should be at the same indent.
4143 $indent != $cindent) {
4152 "switch and case should be at the same indent\n$hereline$err");
4195 if ($nindent > $indent) {
4197 "trailing semicolon indicates no statements, indent implies otherwise\n" .
4203 # Check relative indent for conditionals and blocks.
4291 #print "line<$line> prevline<$prevline> indent<$indent> sindent<$sindent> check<$check> continuation<$continuation> s<$s> cond_lines<$cond_lines> stat_real<$stat_real> stat<$stat>\n";
4295 ($sindent < $indent) ||
4296 ($sindent == $indent &&
4298 ($sindent > $indent + $tabsize))) {
4300 "suspect code indent for conditional statements ($indent, $sindent)\n" . $herecurr . "$stat_real\n");
5626 # indent level to be relevant to each other.
5628 $previndent == $indent) {
5646 $previndent == $indent) {