Home
last modified time | relevance | path

Searched refs:user_provided_types (Results 1 – 6 of 6) sorted by relevance

/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_mir_build/src/thir/
H A Dutil.rs16 let user_provided_types = self.typeck_results().user_provided_types(); in user_substs_applied_to_ty_of_hir_id() localVariable
17 let mut user_ty = *user_provided_types.get(hir_id)?; in user_substs_applied_to_ty_of_hir_id()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_mir_build/src/thir/cx/
H A Dexpr.rs228 let user_provided_types = self.typeck_results().user_provided_types(); in make_mirror_unadjusted() localVariable
377 let user_provided_types = self.typeck_results().user_provided_types(); in make_mirror_unadjusted() localVariable
378 let user_ty = user_provided_types.get(expr.hir_id).copied(); in make_mirror_unadjusted()
402 let user_provided_types = in make_mirror_unadjusted() localVariable
403 self.typeck_results().user_provided_types(); in make_mirror_unadjusted()
642 let user_provided_types = self.typeck_results.user_provided_types(); in make_mirror_unadjusted() localVariable
643 let user_ty = user_provided_types.get(cast_ty.hir_id); in make_mirror_unadjusted()
757 let user_provided_types = self.typeck_results.user_provided_types(); in make_mirror_unadjusted() localVariable
758 let user_ty = user_provided_types.get(ty.hir_id).copied(); in make_mirror_unadjusted()
798 self.typeck_results().user_provided_types().get(hir_id).copied() in user_substs_applied_to_res()
[all …]
H A Dblock.rs80 self.typeck_results.user_provided_types().get(ty.hir_id) in mirror_stmts()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_mir_build/src/thir/pattern/
H A Dmod.rs502 let user_provided_types = self.typeck_results().user_provided_types(); in lower_path() localVariable
503 if let Some(u_ty) = user_provided_types.get(id) { in lower_path()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_middle/src/ty/
H A Dcontext.rs373 user_provided_types: ItemLocalMap<CanonicalUserType<'tcx>>, field
511 user_provided_types: Default::default(), in new()
572 pub fn user_provided_types(&self) -> LocalTableInContext<'_, CanonicalUserType<'tcx>> { in user_provided_types() method
573 LocalTableInContext { hir_owner: self.hir_owner, data: &self.user_provided_types } in user_provided_types()
579 LocalTableInContextMut { hir_owner: self.hir_owner, data: &mut self.user_provided_types } in user_provided_types_mut()
756 ref user_provided_types, in hash_stable()
782 user_provided_types.hash_stable(hcx, hasher); in hash_stable()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_typeck/src/check/
H A Dwriteback.rs445 for (&local_id, c_ty) in fcx_typeck_results.user_provided_types().iter() { in visit_user_provided_tys()