Lines Matching refs:enum
544 qr{enum\s+$Ident},
890 } elsif ($line =~ /^\s*(?:union|struct|enum)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)\s*[;\{]/) {
2046 ^(?:typedef|struct|enum)\b
3058 if ($first =~ /(?:struct|union|enum)/) {
3568 "Please use a blank line after function/struct/union/enum declarations\n" . $hereprev) &&
3611 # start of struct or union or enum
3612 $sline =~ /^\+\s+(?:static\s+)?(?:const\s+)?(?:union|struct|enum|typedef)\b/ ||
4398 # open braces for enum, union and struct go on the same line.
4400 $prevline =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident)?\s*$/) {
4416 # missing space after union, struct or enum definition
4417 if ($line =~ /^.\s*(?:typedef\s+)?(enum|union|struct)(?:\s+$Ident){1,2}[=\{]/) {
4422 s/^(.\s*(?:typedef\s+)?(?:enum|union|struct)(?:\s+$Ident){1,2})([=\{])/$1 $2/;
6504 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {