Home
last modified time | relevance | path

Searched defs:LocalVarId (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/rust/compiler/rustc_mir_build/src/build/custom/
Dparse.rs198 fn parse_let_statement(&mut self, stmt_id: StmtId) -> PResult<(LocalVarId, Ty<'tcx>, Span)> { in parse_let_statement()
209 fn parse_var(&mut self, mut pat: &Pat<'tcx>) -> PResult<(LocalVarId, Ty<'tcx>, Span)> { in parse_var()
/third_party/rust/rust/compiler/rustc_mir_build/src/build/expr/
Das_place.rs156 var_hir_id: LocalVarId, in find_capture_matching_projections()
173 var_hir_id: LocalVarId, in to_upvars_resolved_place_builder()
581 var_hir_id: LocalVarId, in lower_captured_upvar()
/third_party/rust/rust/compiler/rustc_mir_build/src/build/matches/
Dmod.rs683 var: LocalVarId, in storage_live_binding()
701 var: LocalVarId, in schedule_drop_for_binding()
723 LocalVarId, in visit_primary_bindings() argument
2209 var_id: LocalVarId, in declare_binding()
/third_party/rust/rust/compiler/rustc_mir_build/src/build/
Dmod.rs234 fn var_local_id(&self, id: LocalVarId, for_guard: ForGuard) -> Local { in var_local_id()
322 fn new(id: LocalVarId, _binding_mode: BindingMode) -> Self { in new()
/third_party/rust/rust/compiler/rustc_middle/src/
Dthir.rs237 pub struct LocalVarId(pub hir::HirId); struct