Lines Matching refs:trailing
1175 # leading and trailing angle brackets, the address
3090 #trailing whitespace
3101 "trailing whitespace\n" . $herevet) &&
3514 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
3521 # Block comments use */ on trailing lines
3522 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
3524 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
3527 "Block comments use a trailing */ on a separate line\n" . $herecurr);
3535 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
3842 "trailing semicolon indicates no statements, indent implies otherwise\n" .
4438 # so check it for a missing trailing missing space but pointer return types
5125 # Check for illegal assignment in if conditional -- and check for trailing
5200 "trailing statements should be on next line\n" . $herecurr . $stat_real);
5226 "trailing statements should be on next line\n" . $herecurr);
5232 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
5243 "trailing statements should be on next line\n" . $herecurr);
5282 my $trailing = $rawline;
5283 $trailing =~ s/^\+//;
5284 $trailing = trim($trailing);
5285 $fixedline =~ s/}\s*$/} $trailing/;
5557 "macros should not use a trailing semicolon\n" . "$herectx");