Lines Matching refs:enum
769 qr{enum\s+$Ident},
1127 } elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
2290 ^(?:typedef|struct|enum)\b
3520 if ($first =~ /(?:struct|union|enum)/) {
4066 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
4115 # start of struct or union or enum
4116 $sl =~ /^\+\s+(?:static\s+)?(?:const\s+)?(?:union|struct|enum|typedef)\b/ ||
4924 # open braces for enum, union and struct go on the same line.
4926 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
4942 # missing space after union, struct or enum definition
4943 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
4948 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
5842 #Ignore some autogenerated defines and enum values
7156 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {