Lines Matching refs:case
118 --mailback only produce a report in case of warnings/errors
546 our $c90_Keywords = qr{do|for|while|if|else|return|goto|continue|switch|default|case|break}x;
2165 } elsif ($cur =~/^(case)/o) {
2283 case|
3339 my $case = 1;
3375 $case = 0 if ($input =~ /\b[Cc]ommit\s+[0-9a-f]{5,40}[^A-F]/);
3384 ($short || $long || $space || $case || ($orig_desc ne $description) || !$has_quotes) &&
3842 # URL ($rawline is used in case the URL is in a comment)
4285 # Check for switch () and associated case and default
4294 if ($ctx =~ /^\+\s*(case\s+|default:)/ &&
4304 "switch and case should be at the same indent\n$hereline$err");
5048 if|for|while|switch|return|case|
5322 # terminating a case value or a label.
5607 # comparisons with a constant or upper case identifier on the left
5779 # case and default should not have general statements after them
5780 if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
5983 $dstat !~ /^case\b/ && # case ...
7317 $stat =~ /^\+[$;\s]*(?:case[$;\s]+\w+[$;\s]*:[$;\s]*|)*[$;\s]*\bdefault[$;\s]*:[$;\s]*;/g) {