Home
last modified time | relevance | path

Searched refs:PyInstanceMethod_GET_FUNCTION (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython3/Objects/
Dclassobject.c396 return PyInstanceMethod_GET_FUNCTION(im); in PyInstanceMethod_Function()
416 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), docstr); in instancemethod_get_doc()
446 return PyObject_GetAttr(PyInstanceMethod_GET_FUNCTION(self), name); in instancemethod_getattro()
452 Py_DECREF(PyInstanceMethod_GET_FUNCTION(self)); in instancemethod_dealloc()
458 Py_VISIT(PyInstanceMethod_GET_FUNCTION(self)); in instancemethod_traverse()
470 PyObject *func = PyInstanceMethod_GET_FUNCTION(descr); in instancemethod_descr_get()
/external/python/cpython3/Include/
Dclassobject.h50 #define PyInstanceMethod_GET_FUNCTION(meth) \ macro
/external/python/cpython3/Doc/c-api/
Dmethod.rst39 .. c:function:: PyObject* PyInstanceMethod_GET_FUNCTION(PyObject *im)
/external/python/pybind11/include/pybind11/detail/
Dcommon.h169 #define PYBIND11_INSTANCE_METHOD_GET_FUNCTION PyInstanceMethod_GET_FUNCTION
/external/python/cpython3/Doc/data/
Drefcounts.dat1056 PyInstanceMethod_GET_FUNCTION:PyObject*::0:
1057 PyInstanceMethod_GET_FUNCTION:PyObject*:im:0:
/external/python/pybind11/include/pybind11/
Dpytypes.h470 value = PyInstanceMethod_GET_FUNCTION(value.ptr()); in PYBIND11_NAMESPACE_BEGIN()