Lines Matching defs:name
100 PyObject *name, PyObject *const *args,
104 PyObject_CallMethodNoArgs(PyObject *self, PyObject *name)
107 return PyObject_VectorcallMethod(name, &self, nargsf, _Py_NULL);
111 PyObject_CallMethodOneArg(PyObject *self, PyObject *name, PyObject *arg)
116 return PyObject_VectorcallMethod(name, args, nargsf, _Py_NULL);
120 PyObject *name,
124 as the method name. */
126 _Py_Identifier *name,
130 _Py_Identifier *name,
136 _Py_Identifier *name,
141 _Py_Identifier *name, PyObject *const *args,
144 PyObject *oname = _PyUnicode_FromId(name); /* borrowed */
152 _PyObject_CallMethodIdNoArgs(PyObject *self, _Py_Identifier *name)
155 return _PyObject_VectorcallMethodId(name, &self, nargsf, _Py_NULL);
159 _PyObject_CallMethodIdOneArg(PyObject *self, _Py_Identifier *name, PyObject *arg)
164 return _PyObject_VectorcallMethodId(name, args, nargsf, _Py_NULL);