Lines Matching refs:blank

67 #   False negatives occur if the braces are more than two non-blank lines apart.
76 # for a given line if in the non-blank line before or after (if existing)
150 my $line_before; # number of previous not essentially blank line (containing at most whitespace and '\')
151 my $line_before2; # number of not essentially blank line before previous not essentially blank line
304 my $report_SPC = $msg =~ /space|blank/;
543 $_ = "" if $self_test && m/ blank line within local decls /;
649 # tail not essentially blank, first char already checked
697 # blank these portions to prevent confusion with C-level 'if', 'else', etc.
700 $_ = "$lead$space$preproc_directive$_" if $preproc_directive =~ m/^(define|include)$/; # yet do not blank #define or #include to prevent confusing the indentation or whitespace checks, resp.
942 # check for blank lines within/after local decls @@@@@@@@@@@@@@@@@@@@@@@@@@@
948 # essentially blank line before: just whitespace and maybe a '\'
953 report_flexibly($line - 1, "blank line within local decls, before", $contents) if $blank_line_before;
955 report_flexibly($line, "missing blank line after local decls", "\n$contents_before$contents")
958 m/^\s*(\\\s*)?$/ # essentially blank line: just whitespace (and maybe a trailing '\')
1223 report("leading ".($1 eq "" ? "blank" :"whitespace")." line") if $line == 1 && !$sloppy_SPC;
1227 report("$linediff blank lines before") if $linediff > 1 && !$sloppy_SPC;
1249 # check for essentially blank line (which may include a '\') just before EOF
1250 report(($1 eq "\n" ? "blank line" : $2 ne "" ? "'\\'" : "whitespace")." at EOF")