Home
last modified time | relevance | path

Searched refs:new_type (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/scripts/
Dcheckpatch.pl1907 my $new_type = pop(@av_paren_type);
1908 if ($new_type ne '_') {
1909 $type = $new_type;
4081 my $new_type = $type;
4082 $new_type =~ s/\b\s*int\s*\b/ /;
4083 $new_type =~ s/\b\s*(?:un)?signed\b\s*/ /;
4084 $new_type =~ s/^const\s+//;
4085 $new_type = "unsigned $new_type" if ($type =~ /\bunsigned\b/);
4086 $new_type = "const $new_type" if ($type =~ /^const\b/);
4087 $new_type =~ s/\s+/ /g;
[all …]
/Zephyr-latest/scripts/kconfig/
Dkconfiglib.py3289 def _set_type(self, sc, new_type): argument
3293 if sc.orig_type and sc.orig_type is not new_type:
3295 .format(sc.name_and_loc, TYPE_TO_STR[new_type]))
3297 sc.orig_type = new_type