Searched refs:tp_methods (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython2/Doc/includes/ |
D | typestruct.h | 57 struct PyMethodDef *tp_methods; member
|
/external/python/cpython3/Doc/includes/ |
D | typestruct.h | 55 struct PyMethodDef *tp_methods; member
|
/external/python/cpython3/Objects/ |
D | typeslots.inc | 65 offsetof(PyHeapTypeObject, ht_type.tp_methods),
|
D | typeobject.c | 4967 if (type->tp_methods != NULL) { in PyType_Ready() 4968 if (add_methods(type, type->tp_methods) < 0) in PyType_Ready()
|
/external/python/cpython2/Modules/_multiprocessing/ |
D | win32_functions.c | 241 Win32Type.tp_methods = win32_methods; in create_win32_namespace()
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 909 .tp_methods = FutureType_methods, 1110 .tp_methods = FutureIter_methods, 1800 .tp_methods = TaskType_methods,
|
/external/python/cpython2/Include/ |
D | object.h | 380 struct PyMethodDef *tp_methods; member
|
/external/python/cpython3/Include/ |
D | object.h | 402 struct PyMethodDef *tp_methods; member
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 523 and assign them to the :c:member:`~PyTypeObject.tp_methods` slot:: 525 Noddy_methods, /* tp_methods */ 1164 struct PyMethodDef *tp_methods; 1168 If :c:member:`~PyTypeObject.tp_methods` is not *NULL*, it must refer to an array of 1238 As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry with a :attr:`name` value 1272 table uses the same structure as the :c:member:`~PyTypeObject.tp_methods` field of the type
|
/external/python/cpython3/Doc/extending/ |
D | newtypes.rst | 496 and assign them to the :c:member:`~PyTypeObject.tp_methods` slot:: 498 Noddy_methods, /* tp_methods */ 1116 struct PyMethodDef *tp_methods; 1120 If :c:member:`~PyTypeObject.tp_methods` is not *NULL*, it must refer to an array of 1182 As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry with a :attr:`name` value
|
/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 5631 if (t->tp_methods == NULL) { in cfunc_noargs() 5635 for (m = t->tp_methods; m->ml_name != NULL; m++) { in cfunc_noargs()
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 513 …Python 2.2: :c:member:`~PyTypeObject.tp_methods`, :c:member:`~PyTypeObject.tp_members`, :c:member:… 792 .. c:member:: struct PyMethodDef* PyTypeObject.tp_methods
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 4140 if (type->tp_methods != NULL) { 4141 if (add_methods(type, type->tp_methods) < 0)
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 686 .. c:member:: struct PyMethodDef* PyTypeObject.tp_methods
|
/external/python/cpython3/Misc/ |
D | HISTORY | 16593 use the tp_methods slot instead.
|