Lines Matching refs:new_type
2177 my $new_type = pop(@av_paren_type);
2178 if ($new_type ne '_') {
2179 $type = $new_type;
4648 my $new_type = $type;
4649 $new_type =~ s/\b\s*int\s*\b/ /;
4650 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;
4651 $new_type =~ s/^const\s+//;
4652 $new_type = "unsigned $new_type" if ($type =~ /\bunsigned\b/);
4653 $new_type = "const $new_type" if ($type =~ /^const\b/);
4654 $new_type =~ s/\s+/ /g;
4655 $new_type = trim($new_type);
4657 "Prefer '$new_type' over '$type' as the int is unnecessary\n" . $herecurr) &&
4659 $fixed[$fixlinenr] =~ s/\b\Q$type\E\b/$new_type/;