Lines Matching refs:out
89 let mut out = String::new(); in tyid() localVariable
93 out.push_str(&format!("&{lt} ")) in tyid()
95 out.push_str("&") in tyid()
104 out.push_str(&self.type_name_in_interface(ty.owner, &name)); in tyid()
110 out.push_str(&self.generics(lt)); in tyid()
113 return out; in tyid()
160 let mut out = "(".to_string(); in tyid() localVariable
162 out.push_str(&self.ty(ty, mode)); in tyid()
163 out.push_str(","); in tyid()
165 out.push_str(")"); in tyid()
166 out in tyid()
202 let mut out = String::new(); in type_name_in_interface() localVariable
205 out.push_str(&path); in type_name_in_interface()
206 out.push_str("::"); in type_name_in_interface()
209 out.push_str(name); in type_name_in_interface()
210 out in type_name_in_interface()
243 let mut out = format!("{wt}::component::HostStream<"); in stream() localVariable
244 out.push_str(&self.optional_ty(ty, TypeMode::Owned)); in stream()
245 out.push_str(">"); in stream()
246 out in stream()
254 let mut out = format!("{wt}::component::HostFuture<"); in future() localVariable
255 out.push_str(&self.optional_ty(ty, TypeMode::Owned)); in future()
256 out.push_str(">"); in future()
257 out in future()
288 let mut out = format!("{wt}::component::Resource<"); in handle() localVariable
289 out.push_str(&self.type_name_in_interface( in handle()
293 out.push_str(">"); in handle()
294 out in handle()
404 let mut out = "(".to_string(); in typedfunc_sig() localVariable
406 out.push_str(&self.ty(¶m.ty, param_mode)); in typedfunc_sig()
407 out.push_str(", "); in typedfunc_sig()
409 out.push_str("), ("); in typedfunc_sig()
411 out.push_str(&self.ty(&ty, TypeMode::Owned)); in typedfunc_sig()
412 out.push_str(", "); in typedfunc_sig()
414 out.push_str(")"); in typedfunc_sig()
415 out in typedfunc_sig()