Searched refs:is_method (Results 1 – 6 of 6) sorted by relevance
23 {% set is_method = method is not none %}27 {% if is_method and Suffix not in server_handwritten_commands %}
22 {% set is_method = method != None %}23 {% set returns = is_method and method.return_type.name.canonical_case() != "void" %}
21 {% set is_method = method != None %}22 {% set returns = is_method and method.return_type.name.canonical_case() != "void" %}
844 int is_method = _PyObject_GetMethod(obj, name, &callable); in PyObject_CallMethodObjArgs() local848 obj = is_method ? obj : NULL; in PyObject_CallMethodObjArgs()875 int is_method = _PyObject_GetMethod(obj, oname, &callable); in _PyObject_CallMethodIdObjArgs() local879 obj = is_method ? obj : NULL; in _PyObject_CallMethodIdObjArgs()
471 template <bool is_method, typename T>