Searched defs:typeobj (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Include/ |
D | objimpl.h | 156 #define PyObject_New(type, typeobj) \ argument 158 #define PyObject_NewVar(type, typeobj, n) \ argument 163 #define PyObject_INIT(op, typeobj) \ argument 165 #define PyObject_INIT_VAR(op, typeobj, size) \ argument 168 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize ) argument 184 #define _PyObject_VAR_SIZE(typeobj, nitems) \ argument 192 #define PyObject_NEW(type, typeobj) \ argument 196 #define PyObject_NEW_VAR(type, typeobj, n) \ argument 328 #define PyObject_GC_New(type, typeobj) \ argument 330 #define PyObject_GC_NewVar(type, typeobj, n) \ argument
|
/external/python/cpython3/Include/ |
D | objimpl.h | 136 #define PyObject_New(type, typeobj) \ argument 138 #define PyObject_NewVar(type, typeobj, n) \ argument 143 #define PyObject_INIT(op, typeobj) \ argument 145 #define PyObject_INIT_VAR(op, typeobj, size) \ argument 148 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize ) argument 164 #define _PyObject_VAR_SIZE(typeobj, nitems) \ argument 169 #define PyObject_NEW(type, typeobj) \ argument 173 #define PyObject_NEW_VAR(type, typeobj, n) \ argument 340 #define PyObject_GC_New(type, typeobj) \ argument 342 #define PyObject_GC_NewVar(type, typeobj, n) \ argument
|
/external/python/cpython2/Lib/unittest/ |
D | case.py | 208 def addTypeEqualityFunc(self, typeobj, function): argument
|
/external/python/cpython2/Tools/gdb/ |
D | libpython.py | 448 def _PyObject_VAR_SIZE(typeobj, nitems): argument
|
/external/python/cpython3/Lib/unittest/ |
D | case.py | 430 def addTypeEqualityFunc(self, typeobj, function): argument
|
/external/python/cpython3/Tools/gdb/ |
D | libpython.py | 476 def _PyObject_VAR_SIZE(typeobj, nitems): argument
|