Lines Matching refs:identifier

243 # Name of the kernel-doc identifier for non-DOC markups
244 my $identifier;
1133 if ($identifier ne $declaration_name) {
1134 emit_warning("${file}:$.", "expecting prototype for $decl_type $identifier. Prototype was for $decl_type $declaration_name instead\n");
1343 if ($identifier ne $declaration_name) {
1344 if ($identifier eq "") {
1345 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n");
1347 emit_warning("${file}:$.", "expecting prototype for enum $identifier. Prototype was for enum $declaration_name instead\n");
1414 if ($identifier ne $declaration_name) {
1415 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1445 if ($identifier ne $declaration_name) {
1446 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1766 if ($identifier ne $declaration_name) {
1767 emit_warning("${file}:$.", "expecting prototype for $identifier(). Prototype was for $declaration_name() instead\n");
1853 $identifier = "trace_$identifier";
2034 $identifier = $1;
2042 $identifier = $1;
2044 if ($identifier =~ m/^(struct|union|enum|typedef)\b\s*(\S*)/) {
2046 $identifier = $2;
2050 # identifier
2053 $identifier = $1;
2055 $identifier =~ s/^define\s+//;
2058 $identifier =~ s/\s+$//;
2087 if ($identifier eq "" && $decl_type ne "enum") {
2088 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n$_");
2093 print STDERR "${file}:$.: info: Scanning doc for $decl_type $identifier\n";