| /third_party/python/Modules/_sqlite/ |
| D | row.c | 92 PyObject *item = PyTuple_GetItem(self->data, idx); in pysqlite_row_item() 137 PyObject *item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript() 152 PyObject *item = PyTuple_GetItem(self->data, i); in pysqlite_row_subscript()
|
| /third_party/alsa-lib/modules/mixer/simple/ |
| D | python.c | 138 res = PyTuple_GetItem(res, 0); in pcall() 204 t1 = PyTuple_GetItem(res, 1); in get_x_range_ops() 205 t2 = PyTuple_GetItem(res, 2); in get_x_range_ops() 207 *min = PyLong_AsLong(PyTuple_GetItem(res, 1)); in get_x_range_ops() 208 *max = PyLong_AsLong(PyTuple_GetItem(res, 2)); in get_x_range_ops() 212 *min = PyInt_AsLong(PyTuple_GetItem(res, 1)); in get_x_range_ops() 213 *max = PyInt_AsLong(PyTuple_GetItem(res, 2)); in get_x_range_ops() 259 t1 = PyTuple_GetItem(res, 1); in get_x_ops() 319 t1 = PyTuple_GetItem(res, 1); in ask_dB_vol_ops() 408 t1 = PyTuple_GetItem(res, 1); in enum_item_name_ops() [all …]
|
| /third_party/python/Modules/ |
| D | _zoneinfo.c | 863 PyObject *trans_idx_list = PyTuple_GetItem(data_tuple, 0); in load_data() 868 PyObject *trans_utc = PyTuple_GetItem(data_tuple, 1); in load_data() 873 PyObject *utcoff_list = PyTuple_GetItem(data_tuple, 2); in load_data() 878 PyObject *isdst_list = PyTuple_GetItem(data_tuple, 3); in load_data() 883 PyObject *abbr = PyTuple_GetItem(data_tuple, 4); in load_data() 888 PyObject *tz_str = PyTuple_GetItem(data_tuple, 5); in load_data() 919 PyObject *num = PyTuple_GetItem(trans_utc, i); in load_data() 928 num = PyTuple_GetItem(trans_idx_list, i); in load_data() 957 PyObject *num = PyTuple_GetItem(utcoff_list, i); in load_data() 967 num = PyTuple_GetItem(isdst_list, i); in load_data() [all …]
|
| D | _datetimemodule.c | 3233 PyObject* year = PyTuple_GetItem((PyObject *)self, 0); in iso_calendar_date_repr() 3237 PyObject* week = PyTuple_GetItem((PyObject *)self, 1); in iso_calendar_date_repr() 3241 PyObject* weekday = PyTuple_GetItem((PyObject *)self, 2); in iso_calendar_date_repr() 3267 PyObject *year = PyTuple_GetItem((PyObject *)self, 0); in iso_calendar_date_year() 3278 PyObject *week = PyTuple_GetItem((PyObject *)self, 1); in iso_calendar_date_week() 3289 PyObject *weekday = PyTuple_GetItem((PyObject *)self, 2); in iso_calendar_date_weekday()
|
| D | audioop.c | 1402 channel = PyTuple_GetItem(samps, chan); in audioop_ratecv_impl()
|
| D | posixmodule.c | 6416 getitem = PyTuple_GetItem; in os_spawnv_impl() 6522 getitem = PyTuple_GetItem; in os_spawnve_impl()
|
| /third_party/python/Include/ |
| D | tupleobject.h | 32 PyAPI_FUNC(PyObject *) PyTuple_GetItem(PyObject *, Py_ssize_t);
|
| /third_party/python/Doc/c-api/ |
| D | tuple.rst | 57 .. c:function:: PyObject* PyTuple_GetItem(PyObject *p, Py_ssize_t pos) 65 Like :c:func:`PyTuple_GetItem`, but does no checking of its arguments.
|
| /third_party/python/Misc/ |
| D | gdbinit | 43 set $_name = PyUnicode_AsUTF8(PyTuple_GetItem($_names, $_i))
|
| D | stable_abi.txt | 1266 function PyTuple_GetItem
|
| /third_party/python/Objects/ |
| D | funcobject.c | 34 doc = PyTuple_GetItem(consts, 0); in PyFunction_NewWithQualName()
|
| D | tupleobject.c | 180 PyTuple_GetItem(PyObject *op, Py_ssize_t i) in PyTuple_GetItem() function
|
| D | bytesobject.c | 436 return PyTuple_GetItem(args, argidx); in getnextarg()
|
| D | unicodeobject.c | 14681 return PyTuple_GetItem(ctx->args, argidx); in unicode_format_getnextarg()
|
| /third_party/python/PC/ |
| D | python3dll.c | 584 EXPORT_FUNC(PyTuple_GetItem)
|
| /third_party/python/Doc/data/ |
| D | stable_abi.dat | 629 function,PyTuple_GetItem,3.2,
|
| D | refcounts.dat | 2248 PyTuple_GetItem:PyObject*::0: 2249 PyTuple_GetItem:PyObject*:p:0: 2250 PyTuple_GetItem:Py_ssize_t:pos::
|
| /third_party/python/Doc/faq/ |
| D | extending.rst | 83 returns its length and :c:func:`PyTuple_GetItem` returns the item at a specified
|
| /third_party/python/Python/ |
| D | ceval.c | 1326 #define GETITEM(v, i) PyTuple_GetItem((v), (i)) 1863 PyTuple_GetItem(co->co_varnames, oparg)); in _PyEval_EvalFrameDefault() 3053 PyTuple_GetItem(co->co_varnames, oparg) in _PyEval_EvalFrameDefault()
|
| /third_party/python/Modules/_ctypes/ |
| D | _ctypes.c | 1063 typedict = PyTuple_GetItem(args, 2); in PyCPointerType_new() 4138 this = (CDataObject *)PyTuple_GetItem(inargs, 0); /* borrowed ref! */ in PyCFuncPtr_call()
|
| /third_party/python/Doc/extending/ |
| D | extending.rst | 977 :c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and
|