| /third_party/mesa3d/src/compiler/spirv/tests/ |
| D | control_flow_tests.cpp | 28 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/ |
| D | control_flow.rs | 85 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/ |
| D | method_resolution.rs | 864 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/ |
| D | expr.rs | 650 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/ |
| D | node_type.py | 53 ControlFlow = 12 variable in NodeType
|
| /third_party/rust/rust/tests/rustdoc/auxiliary/ |
| D | issue-85454.rs | 14 pub enum ControlFlow<B, C = ()> { enum
|
| /third_party/rust/rust/tests/rustdoc/ |
| D | issue-85454.rs | 20 pub enum ControlFlow<B, C = ()> { enum
|
| /third_party/rust/rust/src/librustdoc/html/ |
| D | length_limit.rs | 62 pub(super) fn push(&mut self, text: &str) -> ControlFlow<(), ()> { in push()
|
| /third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/rewrite/node/ |
| D | control_flow.py | 25 class ControlFlow(Node, NodeManager): class
|
| /third_party/rust/rust/compiler/rustc_hir_analysis/src/variance/ |
| D | mod.rs | 86 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/ |
| D | opaque_types.rs | 137 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/ |
| D | convert_let_else_to_match.rs | 325 let ControlFlow::Break((x, "tag", y, ..)) = f() else$0 { g(); return }; in convert_let_else_to_match_multi_binders() localVariable
|
| D | extract_function.rs | 300 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/ |
| D | resolve_bound_vars.rs | 2001 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/ |
| D | tests.rs | 316 impl ControlFlow { in test_highlighting() impl
|
| D | tags.rs | 59 ControlFlow, enumerator
|
| /third_party/rust/rust/library/core/src/iter/adapters/ |
| D | flatten.rs | 547 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/ |
| D | minicore.rs | 635 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/ |
| D | iterator.rs | 2648 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/ |
| D | machine.rs | 266 ) -> InterpResult<'tcx, ControlFlow<()>> { in align_offset() argument
|
| /third_party/rust/rust/src/tools/clippy/clippy_utils/src/ |
| D | ty.rs | 854 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/ |
| D | wfcheck.rs | 1544 fn visit_ty(&mut self, ty: Ty<'tcx>) -> ControlFlow<!> { in visit_ty()
|
| /third_party/rust/rust/src/tools/rust-analyzer/crates/hir/src/ |
| D | lib.rs | 4017 callback: &mut dyn FnMut(AssocItemId) -> ControlFlow<()>, in iterate_method_candidates_dyn() 4075 callback: &mut dyn FnMut(AssocItemId) -> ControlFlow<()>, in iterate_path_candidates_dyn()
|