Home
last modified time | relevance | path

Searched defs:ControlFlow (Results 1 – 23 of 23) sorted by relevance

/third_party/mesa3d/src/compiler/spirv/tests/
Dcontrol_flow_tests.cpp28 class ControlFlow : public spirv_test {}; class
30 TEST_F(ControlFlow, Basic) in TEST_F() argument
84 TEST_F(ControlFlow, BreakIfConditionWithLoop) in TEST_F() argument
140 TEST_F(ControlFlow, EarlyMerge) in TEST_F() argument
206 TEST_F(ControlFlow, SingleBlockLoop) in TEST_F() argument
/third_party/rust/rust/library/core/src/ops/
Dcontrol_flow.rs85 pub enum ControlFlow<B, C = ()> { enum
100 impl<B, C> ops::Try for ControlFlow<B, C> { implementation
119 impl<B, C> ops::FromResidual for ControlFlow<B, C> { implementation
129 impl<B, C> ops::Residual<C> for ControlFlow<B, convert::Infallible> { implementation
133 impl<B, C> ControlFlow<B, C> { implementation
240 impl<R: ops::Try> ControlFlow<R, R::Output> { implementation
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir-ty/src/
Dmethod_resolution.rs864 callback: &mut dyn FnMut(AssocItemId) -> ControlFlow<()>, in iterate_path_candidates()
887 callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_method_candidates_dyn()
951 mut callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_method_candidates_with_autoref()
1008 mut callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_method_candidates_by_receiver()
1054 mut callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_method_candidates_for_self_ty()
1085 callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_trait_method_candidates()
1141 callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_inherent_methods()
1231 callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_inherent_methods()
1259 callback: &mut dyn FnMut(ReceiverAdjustments, AssocItemId, bool) -> ControlFlow<()>, in iterate_inherent_methods()
/third_party/rust/rust/src/tools/rustfmt/src/
Dexpr.rs650 struct ControlFlow<'a> { struct
673 fn to_control_flow(expr: &ast::Expr, expr_type: ExprType) -> Option<ControlFlow<'_>> { in to_control_flow() argument
705 impl<'a> ControlFlow<'a> { implementation
850 impl<'a> ControlFlow<'a> { impl
1072 impl<'a> Rewrite for ControlFlow<'a> { implementation
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/rewrite/api/
Dnode_type.py53 ControlFlow = 12 variable in NodeType
/third_party/rust/rust/tests/rustdoc/auxiliary/
Dissue-85454.rs14 pub enum ControlFlow<B, C = ()> { enum
/third_party/rust/rust/tests/rustdoc/
Dissue-85454.rs20 pub enum ControlFlow<B, C = ()> { enum
/third_party/rust/rust/src/librustdoc/html/
Dlength_limit.rs62 pub(super) fn push(&mut self, text: &str) -> ControlFlow<(), ()> { in push()
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/rewrite/node/
Dcontrol_flow.py25 class ControlFlow(Node, NodeManager): class
/third_party/rust/rust/compiler/rustc_hir_analysis/src/variance/
Dmod.rs86 fn visit_opaque(&mut self, def_id: DefId, substs: SubstsRef<'tcx>) -> ControlFlow<!> { in variance_of_opaque()
/third_party/rust/rust/compiler/rustc_ty_utils/src/
Dopaque_types.rs137 fn visit_ty(&mut self, t: Ty<'tcx>) -> ControlFlow<!> { in visit_ty()
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide-assists/src/handlers/
Dconvert_let_else_to_match.rs325 let ControlFlow::Break((x, "tag", y, ..)) = f() else$0 { g(); return }; in convert_let_else_to_match_multi_binders() localVariable
Dextract_function.rs300 struct ControlFlow { struct
301 kind: Option<FlowKind>,
302 is_async: bool,
303 is_unsafe: bool,
894 ) -> Option<ControlFlow> { in external_control_flow()
/third_party/rust/rust/compiler/rustc_hir_analysis/src/collect/
Dresolve_bound_vars.rs2001 fn visit_ty(&mut self, t: Ty<'tcx>) -> ControlFlow<!> { in is_late_bound_map()
2012 fn visit_const(&mut self, _: ty::Const<'tcx>) -> ControlFlow<!> { in is_late_bound_map()
2016 fn visit_region(&mut self, r: ty::Region<'tcx>) -> ControlFlow<!> { in is_late_bound_map()
/third_party/rust/rust/src/tools/rust-analyzer/crates/ide/src/syntax_highlighting/
Dtests.rs316 impl ControlFlow { in test_highlighting() impl
Dtags.rs59 ControlFlow, enumerator
/third_party/rust/rust/library/core/src/iter/adapters/
Dflatten.rs547 fn advance<U: Iterator>(n: usize, iter: &mut U) -> ControlFlow<(), usize> { in advance_by()
638 fn advance<U: DoubleEndedIterator>(n: usize, iter: &mut U) -> ControlFlow<(), usize> { in advance_back_by()
/third_party/rust/rust/src/tools/rust-analyzer/crates/test-utils/src/
Dminicore.rs635 pub enum ControlFlow<B, C = ()> { enum
655 impl<B, C> Try for ControlFlow<B, C> { implementation
669 impl<B, C> FromResidual for ControlFlow<B, C> { implementation
/third_party/rust/rust/library/core/src/iter/traits/
Diterator.rs2648 fn check<T>(mut f: impl FnMut(T) -> bool) -> impl FnMut((), T) -> ControlFlow<()> { in all()
2702 fn check<T>(mut f: impl FnMut(T) -> bool) -> impl FnMut((), T) -> ControlFlow<()> { in any()
/third_party/rust/rust/compiler/rustc_const_eval/src/const_eval/
Dmachine.rs266 ) -> InterpResult<'tcx, ControlFlow<()>> { in align_offset() argument
/third_party/rust/rust/src/tools/clippy/clippy_utils/src/
Dty.rs854 impl<'tcx, B, F: FnMut(BoundRegion) -> ControlFlow<B>> TypeVisitor<TyCtxt<'tcx>> for V<F> { in for_each_top_level_late_bound_region() impl
/third_party/rust/rust/compiler/rustc_hir_analysis/src/check/
Dwfcheck.rs1544 fn visit_ty(&mut self, ty: Ty<'tcx>) -> ControlFlow<!> { in visit_ty()
/third_party/rust/rust/src/tools/rust-analyzer/crates/hir/src/
Dlib.rs4017 callback: &mut dyn FnMut(AssocItemId) -> ControlFlow<()>, in iterate_method_candidates_dyn()
4075 callback: &mut dyn FnMut(AssocItemId) -> ControlFlow<()>, in iterate_path_candidates_dyn()