Home | History | Annotate | Download | only in d

Lines Matching refs:temp

37 %typemap(in) const TYPE & ($*1_ltype temp)
38 %{ temp = ($*1_ltype)$input;
39 $1 = &temp; %}
43 %{ static $*1_ltype temp;
44 temp = ($*1_ltype)$input;
45 $result = &temp; %}
80 %typemap(in) const bool & ($*1_ltype temp)
81 %{ temp = $input ? true : false;
82 $1 = &temp; %}
87 %{ static $*1_ltype temp;
88 temp = $input ? true : false;
89 $result = &temp; %}