Home
last modified time | relevance | path

Searched defs:is_method (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/rewrite/node/
Dcall_function.py93 def is_method(self): member in CallFunction
/third_party/rust/rust/src/tools/clippy/clippy_lints/src/methods/
Dfilter_map.rs20 fn is_method(cx: &LateContext<'_>, expr: &hir::Expr<'_>, method_name: Symbol) -> bool { in is_method() function
/third_party/rust/rust/src/librustdoc/formats/
Ditem_type.rs181 pub(crate) fn is_method(&self) -> bool { in is_method() method
/third_party/python/Objects/
Dcall.c871 int is_method = _PyObject_GetMethod(obj, name, &callable); in PyObject_CallMethodObjArgs() local
901 int is_method = _PyObject_GetMethod(obj, oname, &callable); in _PyObject_CallMethodIdObjArgs() local
/third_party/rust/crates/bindgen/bindgen/ir/
Dfunction.rs527 let is_method = kind == CXCursor_CXXMethod; in from_ty() localVariable
/third_party/rust/rust/compiler/rustc_hir_typeck/src/method/
Dsuggest.rs298 let is_method = mode == Mode::MethodCall; in report_no_match_method_error() localVariable
/third_party/rust/rust/compiler/rustc_parse/src/parser/
Ditem.rs395 let is_method = self.recover_self_param(); in recover_missing_kw_before_item() localVariable
/third_party/rust/rust/src/librustdoc/clean/
Dtypes.rs533 pub(crate) fn is_method(&self) -> bool { in is_method() method
/third_party/libabigail/src/
Dabg-dwarf-reader.cc14016 class_or_union_sptr is_method, in build_function_type()
15182 class_or_union_sptr is_method = in build_function_decl() local
Dabg-ir.cc20845 bool is_method = dynamic_cast<const method_type*>(this); in get_first_non_implicit_parm() local
21440 bool is_method = dynamic_cast<const method_decl*>(this); in get_first_non_implicit_parm() local
/third_party/python/Python/
Dceval.c1629 #define is_method(stack_pointer, args) (PEEK((args)+2) != NULL) macro