Searched refs:PyStructSequence_GET_ITEM (Results 1 – 13 of 13) sorted by relevance
/aosp_15_r20/external/python/cpython3/Python/ |
D | errors.c | 1464 PyObject *exc_type = PyStructSequence_GET_ITEM(args, 0); in _PyErr_WriteUnraisableDefaultHook() 1465 PyObject *exc_value = PyStructSequence_GET_ITEM(args, 1); in _PyErr_WriteUnraisableDefaultHook() 1466 PyObject *exc_tb = PyStructSequence_GET_ITEM(args, 2); in _PyErr_WriteUnraisableDefaultHook() 1467 PyObject *err_msg = PyStructSequence_GET_ITEM(args, 3); in _PyErr_WriteUnraisableDefaultHook() 1468 PyObject *obj = PyStructSequence_GET_ITEM(args, 4); in _PyErr_WriteUnraisableDefaultHook()
|
D | sysmodule.c | 2559 Py_XDECREF(PyStructSequence_GET_ITEM(flags, pos)); \ in set_flags_from_config()
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _threadmodule.c | 1502 PyObject *exc_type = PyStructSequence_GET_ITEM(args, 0); in thread_excepthook() 1509 PyObject *exc_value = PyStructSequence_GET_ITEM(args, 1); in thread_excepthook() 1510 PyObject *exc_tb = PyStructSequence_GET_ITEM(args, 2); in thread_excepthook() 1511 PyObject *thread = PyStructSequence_GET_ITEM(args, 3); in thread_excepthook()
|
D | timemodule.c | 610 item = PyStructSequence_GET_ITEM(args, 9); 631 item = PyStructSequence_GET_ITEM(args, 10);
|
D | posixmodule.c | 6965 priority = PyLong_AsLong(PyStructSequence_GET_ITEM(param, 0)); in convert_sched_param()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | structseq.h | 40 #define PyStructSequence_GET_ITEM(op, i) PyTuple_GET_ITEM(op, i) macro
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | structseq.h | 40 #define PyStructSequence_GET_ITEM(op, i) PyTuple_GET_ITEM(op, i) macro
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | structseq.h | 40 #define PyStructSequence_GET_ITEM(op, i) PyTuple_GET_ITEM(op, i) macro
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | structseq.h | 40 #define PyStructSequence_GET_ITEM(op, i) PyTuple_GET_ITEM(op, i) macro
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | structseq.h | 40 #define PyStructSequence_GET_ITEM(op, i) PyTuple_GET_ITEM(op, i) macro
|
/aosp_15_r20/external/python/cpython3/Objects/ |
D | structseq.c | 84 return PyStructSequence_GET_ITEM(op, i); in PyStructSequence_GetItem() 291 PyObject *value = PyStructSequence_GET_ITEM(obj, i); in structseq_repr()
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | tuple.rst | 200 .. c:function:: PyObject* PyStructSequence_GET_ITEM(PyObject *p, Py_ssize_t pos)
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 2092 PyStructSequence_GET_ITEM:PyObject*::0: 2093 PyStructSequence_GET_ITEM:PyObject*:p:0: 2094 PyStructSequence_GET_ITEM:Py_ssize_t:pos::
|