Home
last modified time | relevance | path

Searched defs:is_method (Results 1 – 6 of 6) 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/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.rs495 let is_method = kind == CXCursor_CXXMethod; in from_ty() localVariable
/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