Home
last modified time | relevance | path

Searched refs:PyMethod_GET_FUNCTION (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Include/
Dclassobject.h31 #define PyMethod_GET_FUNCTION(meth) \ macro
/external/python/cpython2/Include/
Dclassobject.h69 #define PyMethod_GET_FUNCTION(meth) \ macro
/external/python/cpython3/Objects/
Dclassobject.c43 PyObject *func = PyMethod_GET_FUNCTION(method); in method_vectorcall()
123 PyObject *func = PyMethod_GET_FUNCTION(im); in method_reduce()
/external/python/cpython2/Doc/c-api/
Dmethod.rst52 .. c:function:: PyObject* PyMethod_GET_FUNCTION(PyObject *meth)
/external/python/cpython3/Doc/c-api/
Dmethod.rst83 .. c:function:: PyObject* PyMethod_GET_FUNCTION(PyObject *meth)
/external/python/pybind11/include/pybind11/detail/
Dcommon.h197 #define PYBIND11_INSTANCE_METHOD_GET_FUNCTION PyMethod_GET_FUNCTION
/external/python/cpython2/Doc/data/
Drefcounts.dat746 PyMethod_GET_FUNCTION:PyObject*::0:
747 PyMethod_GET_FUNCTION:PyObject*:im:0:
/external/python/cpython2/Objects/
Dclassobject.c2553 func = PyMethod_GET_FUNCTION(func); in instancemethod_call()
2628 return PyMethod_New(PyMethod_GET_FUNCTION(meth), obj, cls); in instancemethod_descr_get()
/external/python/cpython2/Python/
Dceval.c3039 func = PyMethod_GET_FUNCTION(func); in PyEval_EvalFrameEx()
4250 return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func)); in PyEval_GetFuncName()
4383 func = PyMethod_GET_FUNCTION(func); in call_function()
/external/python/cpython3/Doc/data/
Drefcounts.dat1314 PyMethod_GET_FUNCTION:PyObject*::0:
1315 PyMethod_GET_FUNCTION:PyObject*:im:0:
/external/python/pybind11/include/pybind11/
Dpytypes.h474 value = PyMethod_GET_FUNCTION(value.ptr()); in PYBIND11_NAMESPACE_BEGIN()
/external/python/cpython3/Python/
Dceval.c5759 return PyEval_GetFuncName(PyMethod_GET_FUNCTION(func)); in PyEval_GetFuncName()
/external/python/cpython3/Modules/
D_pickle.c390 func2 = PyMethod_GET_FUNCTION(func); in init_method_ref()