Home
last modified time | relevance | path

Searched defs:typeobj (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Include/
Dobjimpl.h125 #define PyObject_INIT(op, typeobj) \ argument
127 #define PyObject_INIT_VAR(op, typeobj, size) \ argument
134 #define PyObject_New(type, typeobj) ((type *)_PyObject_New(typeobj)) argument
138 #define PyObject_NEW(type, typeobj) PyObject_New(type, typeobj) argument
140 #define PyObject_NewVar(type, typeobj, n) \ argument
145 #define PyObject_NEW_VAR(type, typeobj, n) PyObject_NewVar(type, typeobj, n) argument
184 #define PyObject_GC_New(type, typeobj) \ argument
186 #define PyObject_GC_NewVar(type, typeobj, n) \ argument
/third_party/python/Include/cpython/
Dobjimpl.h5 #define _PyObject_SIZE(typeobj) ( (typeobj)->tp_basicsize ) argument
21 #define _PyObject_VAR_SIZE(typeobj, nitems) \ argument
/third_party/python/Include/internal/
Dpycore_object.h41 _PyObject_Init(PyObject *op, PyTypeObject *typeobj) in _PyObject_Init()
52 _PyObject_InitVar(PyVarObject *op, PyTypeObject *typeobj, Py_ssize_t size) in _PyObject_InitVar()
/third_party/python/Tools/gdb/
Dlibpython.py478 def _PyObject_VAR_SIZE(typeobj, nitems): argument
/third_party/python/Lib/unittest/
Dcase.py389 def addTypeEqualityFunc(self, typeobj, function): argument