Home
last modified time | relevance | path

Searched refs:PyInstanceMethod_Check (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Include/cpython/
Dclassobject.h51 #define PyInstanceMethod_Check(op) Py_IS_TYPE((op), &PyInstanceMethod_Type) macro
57 (assert(PyInstanceMethod_Check(meth)), \
/external/pytorch/torch/csrc/dynamo/
Dutils.cpp13 return PyInstanceMethod_Check(obj.ptr()); in is_instancemethod()
Dguards.cpp3084 } else if (PyInstanceMethod_Check(obj)) { in check_nopybind()
3100 } else if (PyInstanceMethod_Check(obj)) { in check_verbose_nopybind()
3145 } else if (PyInstanceMethod_Check(obj)) { in check_nopybind()
3161 } else if (PyInstanceMethod_Check(obj)) { in check_verbose_nopybind()
/external/python/cpython3/Objects/
Dclassobject.c379 if (!PyInstanceMethod_Check(im)) { in PyInstanceMethod_Function()
470 !PyInstanceMethod_Check(self) || in instancemethod_richcompare()
471 !PyInstanceMethod_Check(other)) in instancemethod_richcompare()
/external/python/cpython3/Doc/c-api/
Dmethod.rst21 .. c:function:: int PyInstanceMethod_Check(PyObject *o)
/external/python/cpython3/Doc/data/
Drefcounts.dat1109 PyInstanceMethod_Check:int:::
1110 PyInstanceMethod_Check:PyObject*:o:0:
/external/python/cpython3/Misc/
DHISTORY16998 functions *PyInstanceMethod_Check(o)*, *PyInstanceMethod_New(func)*