Home
last modified time | relevance | path

Searched refs:implicit_self (Results 1 – 12 of 12) sorted by relevance

/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/clippy_lints/src/
H A Dinherent_to_string.rs109 if decl.implicit_self.has_implicit_self(); in check_impl_item()
H A Dself_named_constructors.rs46 if sig.decl.implicit_self.has_implicit_self() { in check_impl_item()
H A Dlen_zero.rs133 if sig.decl.implicit_self.has_implicit_self(); in check_impl_item()
155 check_for_is_empty(cx, sig.span, sig.decl.implicit_self, output, ty_id, name, kind) in check_impl_item()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_mir_build/src/build/
H A Dmod.rs157 self_arg = if index == 0 && fn_decl.implicit_self.has_implicit_self() { in mir_build()
158 match fn_decl.implicit_self { in mir_build()
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/clippy_lints/src/methods/
H A Dmod.rs1991 if sig.decl.implicit_self.has_implicit_self() in check_impl_item()
2060 if sig.decl.implicit_self.has_implicit_self(); in check_trait_item()
/dports/lang/rust/rustc-1.58.1-src/src/tools/clippy/doc/
H A Dcommon_tools_writing_lints.md132 if signature.decl.implicit_self.has_implicit_self();
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_borrowck/src/diagnostics/
H A Dmutability_errors.rs863 pos + if sig.decl.implicit_self.has_implicit_self() { in expected_fn_found_fn_mut_call()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_typeck/src/check/
H A Dcheck.rs118 let expected_args = if let ImplicitSelfKind::None = decl.implicit_self { 1 } else { 2 }; in check_fn()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_ast_lowering/src/
H A Dexpr.rs543 implicit_self: hir::ImplicitSelfKind::None, in make_async_expr()
H A Dlib.rs1597 implicit_self: decl.inputs.get(0).map_or(hir::ImplicitSelfKind::None, |arg| { in lower_fn_decl()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_typeck/src/check/method/
H A Dsuggest.rs1540 if !fn_sig.decl.implicit_self.has_implicit_self() in suggest_traits_to_import()
/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_hir/src/
H A Dhir.rs2403 pub implicit_self: ImplicitSelfKind, field