Lines Matching refs:arg
4275 for my $arg (split(/\s*,\s*/, $ctx)) {
4276 …if ($arg =~ /^(?:const\s+)?($Ident)(?:\s+$Sparse)*\s*\**\s*(:?\b$Ident)?$/s || $arg =~ /^($Ident)$…
6010 foreach my $arg (@def_args) {
6011 next if ($arg =~ /\.\.\./);
6012 next if ($arg =~ /^type$/i);
6014 …__stringify|typeof|__typeof__|__builtin\w+|typecheck\s*\(\s*$Type\s*,|\#+)\s*\(*\s*$arg\s*\)*\b//g;
6015 $tmp_stmt =~ s/\#+\s*$arg\b//g;
6016 $tmp_stmt =~ s/\b$arg\s*\#\#//g;
6017 my $use_cnt = () = $tmp_stmt =~ /\b$arg\b/g;
6020 "Macro argument reuse '$arg' - possible side-effects?\n" . "$herectx");
6023 if ($tmp_stmt =~ m/($Operators)?\s*\b$arg\b\s*($Operators)?/m &&
6027 … "Macro argument '$arg' may be better as '($arg)' to avoid precedence issues\n" . "$herectx");
7093 my $arg = trim($1);
7094 if ($arg =~ /^$Type$/ && $arg !~ /enum\s+$Ident$/) {
7096 "function definition argument '$arg' should also have an identifier name\n" . $herecurr);
7285 my $arg = $2;
7291 ($arg, $otype) = ($otype, $arg) if ($arg =~ /^(?:true|false)$/i);