Searched refs:_PyObject_RealIsSubclass (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython3/Objects/ |
D | descrobject.c | 237 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in methoddescr_call() 276 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in _PyMethodDescr_FastCallKeywords() 378 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in wrapperdescr_call() 1206 assert(_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in PyWrapper_New()
|
D | abstract.c | 2509 _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls) in _PyObject_RealIsSubclass() function
|
D | exceptions.c | 2439 assert(_PyObject_RealIsSubclass(PyExc_ ## TYPE, PyExc_OSError)); \
|
D | typeobject.c | 865 return _PyObject_RealIsSubclass(subclass, (PyObject *)self); in type___subclasscheck___impl()
|
/external/python/cpython2/Objects/ |
D | descrobject.c | 227 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in methoddescr_call() 323 if (!_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in wrapperdescr_call() 1102 assert(_PyObject_RealIsSubclass((PyObject *)Py_TYPE(self), in PyWrapper_New()
|
D | abstract.c | 3075 _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls) function
|
D | typeobject.c | 629 switch (_PyObject_RealIsSubclass(inst, type)) { in type___subclasscheck__()
|
/external/python/cpython2/Include/ |
D | abstract.h | 1383 PyAPI_FUNC(int) _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls);
|
/external/python/cpython3/Include/ |
D | abstract.h | 1089 PyAPI_FUNC(int) _PyObject_RealIsSubclass(PyObject *derived, PyObject *cls);
|