Searched refs:tp_methods (Results 1 – 25 of 25) sorted by relevance
/third_party/python/Doc/includes/ |
D | sublist.c | 39 .tp_methods = SubList_methods,
|
D | typestruct.h | 57 struct PyMethodDef *tp_methods; member
|
D | custom2.c | 109 .tp_methods = Custom_methods,
|
D | custom3.c | 159 .tp_methods = Custom_methods,
|
D | custom4.c | 173 .tp_methods = Custom_methods,
|
/third_party/python/Objects/ |
D | picklebufobject.c | 218 .tp_methods = picklebuf_methods,
|
D | typeslots.inc | 65 {-1, offsetof(PyTypeObject, tp_methods)},
|
D | unionobject.c | 462 .tp_methods = union_methods,
|
D | structseq.c | 492 type->tp_methods = structseq_methods; in _PyStructSequence_InitType()
|
D | genericaliasobject.c | 651 .tp_methods = ga_methods,
|
D | dictobject.c | 4124 .tp_methods = dictiter_methods 4167 .tp_methods = dictiter_methods 4179 .tp_methods = dictiter_methods
|
D | typeobject.c | 5619 PyMethodDef *meth = type->tp_methods; in type_add_methods()
|
/third_party/python/Python/ |
D | context.c | 708 .tp_methods = PyContext_methods, 1061 .tp_methods = PyContextVar_methods, 1202 .tp_methods = PyContextTokenType_methods,
|
D | hamt.c | 2896 .tp_methods = PyHamt_methods,
|
/third_party/python/Include/cpython/ |
D | object.h | 247 struct PyMethodDef *tp_methods; member
|
/third_party/alsa-lib/modules/mixer/simple/ |
D | python.c | 717 tp_methods: pymelem_methods, 898 tp_methods: pymixer_methods,
|
/third_party/python/Doc/extending/ |
D | newtypes.rst | 255 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
|
D | newtypes_tutorial.rst | 511 and assign it to the :c:member:`~PyTypeObject.tp_methods` slot:: 513 .tp_methods = Custom_methods,
|
/third_party/python/Modules/ |
D | _asynciomodule.c | 1545 .tp_methods = FutureType_methods, 1771 .tp_methods = FutureIter_methods, 2502 .tp_methods = TaskType_methods,
|
D | _testcapimodule.c | 6424 .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.c | 2601 .tp_methods = zoneinfo_methods,
|
D | _datetimemodule.c | 3317 .tp_methods = iso_calendar_date_methods,
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 105 …| :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.c | 5646 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/ |
D | HISTORY | 16593 use the tp_methods slot instead.
|