Searched refs:PyStructSequence_Desc (Results 1 – 25 of 27) sorted by relevance
12
/third_party/python/Include/ |
D | structseq.h | 15 typedef struct PyStructSequence_Desc { struct 20 } PyStructSequence_Desc; argument 26 PyStructSequence_Desc *desc); 28 PyStructSequence_Desc *desc); 30 PyAPI_FUNC(PyTypeObject*) PyStructSequence_NewType(PyStructSequence_Desc *desc);
|
/third_party/python/Objects/ |
D | structseq.c | 371 count_members(PyStructSequence_Desc *desc, Py_ssize_t *n_unnamed_members) { in count_members() 384 initialize_structseq_dict(PyStructSequence_Desc *desc, PyObject* dict, in initialize_structseq_dict() 441 initialize_members(PyStructSequence_Desc *desc, PyMemberDef* members, in initialize_members() 465 _PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc *desc, in _PyStructSequence_InitType() 523 PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc) in PyStructSequence_InitType2() 529 PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc *desc) in PyStructSequence_InitType() 535 PyStructSequence_NewType(PyStructSequence_Desc *desc) in PyStructSequence_NewType()
|
D | floatobject.c | 79 static PyStructSequence_Desc floatinfo_desc = {
|
D | longobject.c | 5709 static PyStructSequence_Desc int_info_desc = {
|
/third_party/python/Doc/c-api/ |
D | tuple.rst | 122 .. c:function:: PyTypeObject* PyStructSequence_NewType(PyStructSequence_Desc *desc) 128 .. c:function:: void PyStructSequence_InitType(PyTypeObject *type, PyStructSequence_Desc *desc) 133 .. c:function:: int PyStructSequence_InitType2(PyTypeObject *type, PyStructSequence_Desc *desc) 141 .. c:type:: PyStructSequence_Desc 165 :attr:`fields` array of the :c:type:`PyStructSequence_Desc` determines which
|
/third_party/python/Include/internal/ |
D | pycore_structseq.h | 14 PyStructSequence_Desc *desc,
|
/third_party/python/Python/ |
D | thread.c | 176 static PyStructSequence_Desc threadinfo_desc = {
|
D | sysmodule.c | 1265 static PyStructSequence_Desc asyncgen_hooks_desc = { 1386 static PyStructSequence_Desc hash_info_desc = { 1462 static PyStructSequence_Desc windows_version_desc = { 2565 static PyStructSequence_Desc flags_desc = { 2648 static PyStructSequence_Desc version_info_desc = {
|
D | errors.c | 1213 static PyStructSequence_Desc UnraisableHookArgs_desc = {
|
/third_party/python/Modules/ |
D | spwdmodule.c | 55 static PyStructSequence_Desc struct_spwd_type_desc = {
|
D | grpmodule.c | 29 static PyStructSequence_Desc struct_group_type_desc = {
|
D | pwdmodule.c | 32 static PyStructSequence_Desc struct_pwd_type_desc = {
|
D | _lsprof.c | 490 static PyStructSequence_Desc profiler_entry_desc = { 497 static PyStructSequence_Desc profiler_subentry_desc = {
|
D | resource.c | 59 static PyStructSequence_Desc struct_rusage_desc = {
|
D | signalmodule.c | 1130 static PyStructSequence_Desc struct_siginfo_desc = {
|
D | posixmodule.c | 2208 static PyStructSequence_Desc stat_result_desc = { 2238 static PyStructSequence_Desc statvfs_result_desc = { 2263 static PyStructSequence_Desc waitid_result_desc = { 5037 static PyStructSequence_Desc uname_result_desc = { 6849 static PyStructSequence_Desc sched_param_desc = { 8880 static PyStructSequence_Desc times_result_desc = { 13121 static PyStructSequence_Desc TerminalSize_desc = {
|
D | _threadmodule.c | 1482 static PyStructSequence_Desc ExceptHookArgs_desc = {
|
D | timemodule.c | 396 static PyStructSequence_Desc struct_time_type_desc = {
|
D | _cursesmodule.c | 4577 static PyStructSequence_Desc ncurses_version_desc = {
|
D | _testcapimodule.c | 3861 PyStructSequence_Desc descr; in test_structseq_newtype_doesnt_leak() 3890 PyStructSequence_Desc descr = {"_testcapi.test_descr", NULL, &descr_fields[0], 0}; in test_structseq_newtype_null_descr_doc()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0b2.rst | 413 ``PyStructSequence_Desc`` with ``doc`` field set to ``NULL``.
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 566 type,PyStructSequence_Desc,3.2,
|
D | refcounts.dat | 2102 PyStructSequence_InitType:PyStructSequence_Desc*:desc:: 2106 PyStructSequence_InitType2:PyStructSequence_Desc*:desc:: 2112 PyStructSequence_NewType:PyStructSequence_Desc*:desc::
|
/third_party/python/Misc/ |
D | stable_abi.txt | 31 struct PyStructSequence_Desc
|
/third_party/python/Tools/c-analyzer/cpython/ |
D | ignored.tsv | 1233 # PyStructSequence_Desc []
|
12