Searched refs:reprfunc (Results 1 – 25 of 64) sorted by relevance
123
/third_party/python/Doc/includes/ |
D | typestruct.h | 14 reprfunc tp_repr; 26 reprfunc tp_str;
|
/third_party/python/Objects/ |
D | interpreteridobject.c | 237 (reprfunc)interpid_repr, /* tp_repr */ 243 (reprfunc)interpid_str, /* tp_str */
|
D | descrobject.c | 700 (reprfunc)method_repr, /* tp_repr */ 740 (reprfunc)method_repr, /* tp_repr */ 777 (reprfunc)member_repr, /* tp_repr */ 814 (reprfunc)getset_repr, /* tp_repr */ 851 (reprfunc)wrapperdescr_repr, /* tp_repr */ 1408 (reprfunc)wrapper_repr, /* tp_repr */ 1843 (reprfunc)mappingproxy_repr, /* tp_repr */ 1849 (reprfunc)mappingproxy_str, /* tp_str */
|
D | cellobject.c | 167 (reprfunc)cell_repr, /* tp_repr */
|
D | classobject.c | 341 (reprfunc)method_repr, /* tp_repr */ 581 (reprfunc)instancemethod_repr, /* tp_repr */
|
D | funcobject.c | 695 (reprfunc)func_repr, /* tp_repr */ 927 (reprfunc)cm_repr, /* tp_repr */ 1123 (reprfunc)sm_repr, /* tp_repr */
|
D | namespaceobject.c | 212 (reprfunc)namespace_repr, /* tp_repr */
|
D | structseq.c | 489 type->tp_repr = (reprfunc)structseq_repr; in _PyStructSequence_InitType() 554 slots[1] = (PyType_Slot){Py_tp_repr, (reprfunc)structseq_repr}; in PyStructSequence_NewType()
|
D | exceptions.c | 391 (reprfunc)BaseException_repr, /*tp_repr*/ 397 (reprfunc)BaseException_str, /*tp_str*/ 468 (reprfunc)EXCSTR, 0, 0, 0, \ 2108 (reprfunc)UnicodeEncodeError_str, 0, 0, 0, 2224 (reprfunc)UnicodeDecodeError_str, 0, 0, 0, 2321 (reprfunc)UnicodeTranslateError_str, 0, 0, 0,
|
D | weakrefobject.c | 382 (reprfunc)weakref_repr, /*tp_repr*/ 753 (reprfunc)proxy_repr, /* tp_repr */
|
D | fileobject.c | 477 (reprfunc)stdprinter_repr, /* tp_repr */
|
D | genobject.c | 788 (reprfunc)gen_repr, /* tp_repr */ 1035 (reprfunc)coro_repr, /* tp_repr */ 1419 (reprfunc)async_gen_repr, /* tp_repr */
|
D | sliceobject.c | 641 (reprfunc)slice_repr, /* tp_repr */
|
D | methodobject.c | 347 (reprfunc)meth_repr, /* tp_repr */
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | field.cc | 97 (reprfunc)field::Repr, // tp_repr
|
D | descriptor_containers.cc | 570 (reprfunc)ContainerRepr, // tp_repr 755 (reprfunc)ContainerRepr, // tp_repr
|
/third_party/python/Include/cpython/ |
D | object.h | 204 reprfunc tp_repr; 216 reprfunc tp_str;
|
/third_party/python/Modules/ |
D | _datetimemodule.c | 2721 (reprfunc)delta_repr, /* tp_repr */ 2727 (reprfunc)delta_str, /* tp_str */ 3314 .tp_repr = (reprfunc) iso_calendar_date_repr, 3567 (reprfunc)date_repr, /* tp_repr */ 3573 (reprfunc)date_str, /* tp_str */ 4052 (reprfunc)timezone_repr, /* tp_repr */ 4058 (reprfunc)timezone_str, /* tp_str */ 4718 (reprfunc)time_repr, /* tp_repr */ 4724 (reprfunc)time_str, /* tp_str */ 6435 (reprfunc)datetime_repr, /* tp_repr */ [all …]
|
D | _threadmodule.c | 304 {Py_tp_repr, (reprfunc)lock_repr}, 585 {Py_tp_repr, (reprfunc)rlock_repr},
|
/third_party/python/Python/ |
D | context.c | 1071 .tp_repr = (reprfunc)contextvar_tp_repr, 1212 .tp_repr = (reprfunc)token_tp_repr,
|
/third_party/python/Include/ |
D | object.h | 206 typedef PyObject *(*reprfunc)(PyObject *); typedef
|
/third_party/python/Modules/_io/ |
D | bufferedio.c | 2440 (reprfunc)buffered_repr, /*tp_repr*/ 2526 (reprfunc)buffered_repr, /*tp_repr*/ 2697 (reprfunc)buffered_repr, /*tp_repr*/
|
D | fileio.c | 1200 (reprfunc)fileio_repr, /* tp_repr */
|
/third_party/python/Doc/c-api/ |
D | typeobj.rst | 62 …| :c:member:`~PyTypeObject.tp_repr` | :c:type:`reprfunc` | __repr__ … 74 …| :c:member:`~PyTypeObject.tp_str` | :c:type:`reprfunc` | __str__ … 360 | :c:type:`reprfunc` | :c:type:`PyObject` * | :c:type:`PyObject` * | 802 .. c:member:: reprfunc PyTypeObject.tp_repr 917 .. c:member:: reprfunc PyTypeObject.tp_str 2502 .. c:type:: PyObject *(*reprfunc)(PyObject *) 2601 .tp_repr = (reprfunc)myobj_repr, 2617 (reprfunc)myobj_repr, /* tp_repr */ 2670 .tp_repr = (reprfunc)myobj_repr, 2691 .tp_repr = (reprfunc)myobj_repr,
|
/third_party/python/Modules/_decimal/ |
D | _decimal.c | 689 (reprfunc) signaldict_repr, /* tp_repr */ 695 (reprfunc) 0, /* tp_str */ 1816 (reprfunc) 0, /* tp_repr */ 4850 (reprfunc) dec_repr, /* tp_repr */ 4856 (reprfunc) dec_str, /* tp_str */ 5536 (reprfunc) context_repr, /* tp_repr */
|
123