Lines Matching refs:identifier

246 # Name of the kernel-doc identifier for non-DOC markups
247 my $identifier;
1132 if ($identifier ne $declaration_name) {
1133 emit_warning("${file}:$.", "expecting prototype for $decl_type $identifier. Prototype was for $decl_type $declaration_name instead\n");
1342 if ($identifier ne $declaration_name) {
1343 if ($identifier eq "") {
1344 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n");
1346 emit_warning("${file}:$.", "expecting prototype for enum $identifier. Prototype was for enum $declaration_name instead\n");
1413 if ($identifier ne $declaration_name) {
1414 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1444 if ($identifier ne $declaration_name) {
1445 emit_warning("${file}:$.", "expecting prototype for typedef $identifier. Prototype was for typedef $declaration_name instead\n");
1782 if ($identifier ne $declaration_name) {
1783 emit_warning("${file}:$.", "expecting prototype for $identifier(). Prototype was for $declaration_name() instead\n");
1869 $identifier = "trace_$identifier";
2049 $identifier = $1;
2057 $identifier = $1;
2059 if ($identifier =~ m/^(struct|union|enum|typedef)\b\s*(\S*)/) {
2061 $identifier = $2;
2065 # identifier
2068 $identifier = $1;
2070 $identifier =~ s/^define\s+//;
2073 $identifier =~ s/\s+$//;
2102 if ($identifier eq "" && $decl_type ne "enum") {
2103 emit_warning("${file}:$.", "wrong kernel-doc identifier on line:\n$_");
2108 print STDERR "${file}:$.: info: Scanning doc for $decl_type $identifier\n";