Home
last modified time | relevance | path

Searched refs:tp_methods (Results 1 – 25 of 25) sorted by relevance

/third_party/python/Doc/includes/
Dsublist.c39 .tp_methods = SubList_methods,
Dtypestruct.h57 struct PyMethodDef *tp_methods; member
Dcustom2.c109 .tp_methods = Custom_methods,
Dcustom3.c159 .tp_methods = Custom_methods,
Dcustom4.c173 .tp_methods = Custom_methods,
/third_party/python/Objects/
Dpicklebufobject.c218 .tp_methods = picklebuf_methods,
Dtypeslots.inc65 {-1, offsetof(PyTypeObject, tp_methods)},
Dunionobject.c462 .tp_methods = union_methods,
Dstructseq.c492 type->tp_methods = structseq_methods; in _PyStructSequence_InitType()
Dgenericaliasobject.c651 .tp_methods = ga_methods,
Ddictobject.c4124 .tp_methods = dictiter_methods
4167 .tp_methods = dictiter_methods
4179 .tp_methods = dictiter_methods
Dtypeobject.c5619 PyMethodDef *meth = type->tp_methods; in type_add_methods()
/third_party/python/Python/
Dcontext.c708 .tp_methods = PyContext_methods,
1061 .tp_methods = PyContextVar_methods,
1202 .tp_methods = PyContextTokenType_methods,
Dhamt.c2896 .tp_methods = PyHamt_methods,
/third_party/python/Include/cpython/
Dobject.h247 struct PyMethodDef *tp_methods; member
/third_party/alsa-lib/modules/mixer/simple/
Dpython.c717 tp_methods: pymelem_methods,
898 tp_methods: pymixer_methods,
/third_party/python/Doc/extending/
Dnewtypes.rst255 struct PyMethodDef *tp_methods;
259 If :c:member:`~PyTypeObject.tp_methods` is not ``NULL``, it must refer to an array of
326 As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry with a :attr:`name` value
Dnewtypes_tutorial.rst511 and assign it to the :c:member:`~PyTypeObject.tp_methods` slot::
513 .tp_methods = Custom_methods,
/third_party/python/Modules/
D_asynciomodule.c1545 .tp_methods = FutureType_methods,
1771 .tp_methods = FutureIter_methods,
2502 .tp_methods = TaskType_methods,
D_testcapimodule.c6424 .tp_methods = generic_alias_methods,
6460 .tp_methods = generic_methods,
7036 .tp_methods = meth_instance_methods,
7058 .tp_methods = meth_class_methods,
7080 .tp_methods = meth_static_methods,
D_zoneinfo.c2601 .tp_methods = zoneinfo_methods,
D_datetimemodule.c3317 .tp_methods = iso_calendar_date_methods,
/third_party/python/Doc/c-api/
Dtypeobj.rst105 …| :c:member:`~PyTypeObject.tp_methods` | :c:type:`PyMethodDef` [] | …
1559 .. c:member:: struct PyMethodDef* PyTypeObject.tp_methods
2635 0, /* tp_methods */
/third_party/python/Modules/_decimal/
D_decimal.c5646 if (t->tp_methods == NULL) { in cfunc_noargs()
5650 for (m = t->tp_methods; m->ml_name != NULL; m++) { in cfunc_noargs()
/third_party/python/Misc/
DHISTORY16593 use the tp_methods slot instead.