Searched refs:tp_methods (Results 1 – 25 of 30) sorted by relevance
12
/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
|
D | sublist.c | 39 .tp_methods = SubList_methods,
|
D | custom2.c | 109 .tp_methods = Custom_methods,
|
D | custom3.c | 159 .tp_methods = Custom_methods,
|
D | custom4.c | 173 .tp_methods = Custom_methods,
|
/external/python/cpython3/Objects/ |
D | typeslots.inc | 65 offsetof(PyHeapTypeObject, ht_type.tp_methods),
|
D | picklebufobject.c | 218 .tp_methods = picklebuf_methods,
|
D | structseq.c | 412 type->tp_methods = structseq_methods; in PyStructSequence_InitType2()
|
D | genericaliasobject.c | 601 .tp_methods = ga_methods,
|
D | dictobject.c | 4009 .tp_methods = dictiter_methods 4052 .tp_methods = dictiter_methods 4064 .tp_methods = dictiter_methods
|
/external/python/cpython3/Python/ |
D | context.c | 692 .tp_methods = PyContext_methods, 1045 .tp_methods = PyContextVar_methods, 1186 .tp_methods = PyContextTokenType_methods,
|
D | hamt.c | 2915 .tp_methods = PyHamt_methods,
|
/external/python/cpython2/Modules/_multiprocessing/ |
D | win32_functions.c | 241 Win32Type.tp_methods = win32_methods; in create_win32_namespace()
|
/external/tensorflow/tensorflow/python/util/ |
D | fast_module_type.cc | 237 obj.tp_methods = FastModule_methods; in __anona71ec8820102()
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 249 struct PyMethodDef *tp_methods; member
|
/external/python/cpython3/Doc/extending/ |
D | newtypes.rst | 243 struct PyMethodDef *tp_methods; 247 If :c:member:`~PyTypeObject.tp_methods` is not ``NULL``, it must refer to an array of 309 As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry with a :attr:`name` value
|
D | newtypes_tutorial.rst | 510 and assign it to the :c:member:`~PyTypeObject.tp_methods` slot:: 512 .tp_methods = Custom_methods,
|
/external/python/cpython2/Include/ |
D | object.h | 380 struct PyMethodDef *tp_methods; member
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 1542 .tp_methods = FutureType_methods, 1735 .tp_methods = FutureIter_methods, 2544 .tp_methods = TaskType_methods,
|
D | _testcapimodule.c | 6079 .tp_methods = generic_alias_methods, 6115 .tp_methods = generic_methods, 6642 .tp_methods = meth_instance_methods, 6664 .tp_methods = meth_class_methods, 6686 .tp_methods = meth_static_methods,
|
D | _zoneinfo.c | 2585 .tp_methods = zoneinfo_methods,
|
/external/python/cpython2/Doc/extending/ |
D | newtypes.rst | 515 and assign them to the :c:member:`~PyTypeObject.tp_methods` slot:: 517 Noddy_methods, /* tp_methods */ 1168 struct PyMethodDef *tp_methods; 1172 If :c:member:`~PyTypeObject.tp_methods` is not *NULL*, it must refer to an array of 1242 As with the :c:member:`~PyTypeObject.tp_methods` table, a sentinel entry with a :attr:`name` value 1276 table uses the same structure as the :c:member:`~PyTypeObject.tp_methods` field of the type
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 105 …| :c:member:`~PyTypeObject.tp_methods` | :c:type:`PyMethodDef` [] | … 1455 .. c:member:: struct PyMethodDef* PyTypeObject.tp_methods 2503 0, /* tp_methods */
|
/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 5635 if (t->tp_methods == NULL) { in cfunc_noargs() 5639 for (m = t->tp_methods; m->ml_name != NULL; m++) { in cfunc_noargs()
|
12