Lines Matching refs:trailing
1414 # leading and trailing angle brackets, the address
1455 $address =~ s/(?:\.|\,|\")+$//; ##trailing commas, dots or quotes
3215 # Always strip leading/trailing parens then double quotes if existing
3354 # Always strip leading/trailing parens then double quotes if existing
3566 #trailing whitespace
3577 "trailing whitespace\n" . $herevet) &&
4012 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */
4019 # Block comments use */ on trailing lines
4020 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */
4022 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/
4025 "Block comments use a trailing */ on a separate line\n" . $herecurr);
4033 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */
4349 "trailing semicolon indicates no statements, indent implies otherwise\n" .
4964 # so check it for a missing trailing missing space but pointer return types
5655 # Check for illegal assignment in if conditional -- and check for trailing
5732 "trailing statements should be on next line\n" . $herecurr . $stat_real) &&
5770 "trailing statements should be on next line\n" . $herecurr);
5776 "trailing statements should be on next line (or did you mean 'else if'?)\n" .
5787 "trailing statements should be on next line\n" . $herecurr);
5826 my $trailing = $rawline;
5827 $trailing =~ s/^\+//;
5828 $trailing = trim($trailing);
5829 $fixedline =~ s/}\s*$/} $trailing/;
6109 "macros should not use a trailing semicolon\n" . "$herectx");