Searched refs:_PyObject_ASSERT_FAILED_MSG (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython3/Objects/ |
D | object.c | 33 do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0) in _PyObject_CheckConsistency() 205 _PyObject_ASSERT_FAILED_MSG(self, in PyObject_CallFinalizerFromDealloc() 1842 _PyObject_ASSERT_FAILED_MSG(op, "negative refcnt"); in _Py_ForgetReference() 1848 _PyObject_ASSERT_FAILED_MSG(op, "invalid object chain"); in _Py_ForgetReference() 1860 _PyObject_ASSERT_FAILED_MSG(op, in _Py_ForgetReference()
|
D | typeobject.c | 154 …do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG((PyObject *)type, Py_STRINGIFY(expr)); } } while (… in _PyType_CheckConsistency() 3667 _PyObject_ASSERT_FAILED_MSG((PyObject *)type, msg); in type_traverse()
|
D | dictobject.c | 472 do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0) in _PyDict_CheckConsistency()
|
D | unicodeobject.c | 514 do { if (!(expr)) { _PyObject_ASSERT_FAILED_MSG(op, Py_STRINGIFY(expr)); } } while (0) in _PyUnicode_CheckConsistency() 1949 _PyObject_ASSERT_FAILED_MSG(unicode, "Immortal interned string died"); in unicode_dealloc()
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 427 #define _PyObject_ASSERT_FAILED_MSG(obj, msg) \ macro
|
/external/python/cpython3/Modules/ |
D | gcmodule.c | 2162 _PyObject_ASSERT_FAILED_MSG(parent, in visit_validate() 2178 _PyObject_ASSERT_FAILED_MSG(op, in PyObject_GC_Track()
|