/third_party/python/Modules/ |
D | termios.c | 176 mode.c_iflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 0)); in termios_tcsetattr_impl() 177 mode.c_oflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 1)); in termios_tcsetattr_impl() 178 mode.c_cflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 2)); in termios_tcsetattr_impl() 179 mode.c_lflag = (tcflag_t) PyLong_AsLong(PyList_GetItem(term, 3)); in termios_tcsetattr_impl() 180 speed_t ispeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 4)); in termios_tcsetattr_impl() 181 speed_t ospeed = (speed_t) PyLong_AsLong(PyList_GetItem(term, 5)); in termios_tcsetattr_impl() 182 PyObject *cc = PyList_GetItem(term, 6); in termios_tcsetattr_impl() 197 v = PyList_GetItem(cc, i); in termios_tcsetattr_impl()
|
D | xxmodule.c | 191 item = PyList_GetItem(list, 0); in xx_bug()
|
D | syslogmodule.c | 89 scriptobj = PyList_GetItem(argv, 0); in syslog_get_argv()
|
D | posixmodule.c | 5619 key = PyList_GetItem(keys, pos); in parse_envlist() 5620 val = PyList_GetItem(vals, pos); in parse_envlist() 6412 getitem = PyList_GetItem; in os_spawnv_impl() 6518 getitem = PyList_GetItem; in os_spawnve_impl()
|
/third_party/python/Include/ |
D | listobject.h | 31 PyAPI_FUNC(PyObject *) PyList_GetItem(PyObject *, Py_ssize_t);
|
/third_party/python/Doc/c-api/ |
D | list.rst | 59 .. c:function:: PyObject* PyList_GetItem(PyObject *list, Py_ssize_t index) 69 Macro form of :c:func:`PyList_GetItem` without error checking.
|
D | intro.rst | 422 Thus, if you extract an item from a list using :c:func:`PyList_GetItem`, you 428 single: PyList_GetItem() 432 the items in a list of integers; once using :c:func:`PyList_GetItem`, and once 446 item = PyList_GetItem(list, i); /* Can't fail */
|
D | stable.rst | 82 For example, while :c:func:`PyList_GetItem` is available, its “unsafe” macro
|
/third_party/python/Tools/peg_generator/peg_extension/ |
D | peg_extension.c | 139 PyObject *value = PyList_GetItem(list, i); // Borrowed reference. in dump_memo_stats()
|
/third_party/python/Modules/_sqlite/ |
D | connection.c | 209 weakref = PyList_GetItem(self->statements, i); in pysqlite_do_all_statements() 224 weakref = PyList_GetItem(self->cursors, i); in pysqlite_do_all_statements() 827 weakref = PyList_GetItem(self->statements, i); in _pysqlite_drop_unused_statement_references() 858 weakref = PyList_GetItem(self->cursors, i); in _pysqlite_drop_unused_cursor_references()
|
D | statement.c | 266 PyObject *item = PyList_GetItem(parameters, i); in pysqlite_statement_bind_parameters()
|
/third_party/selinux/libselinux/src/ |
D | audit2why.c | 359 strObj = PyList_GetItem(listObj, i); /* Can't fail */ in analyze()
|
/third_party/libxml2/python/ |
D | types.c | 786 node = PyList_GetItem(obj, i); in libxml_xmlXPathObjectPtrConvert()
|
/third_party/python/Python/ |
D | traceback.c | 331 v = PyList_GetItem(syspath, i); in _Py_FindSourceFile()
|
D | _warnings.c | 1032 source_line = PyList_GetItem(source_list, lineno-1); in get_source_line()
|
D | codecs.c | 173 func = PyList_GetItem(interp->codec_search_path, i); in _PyCodec_Lookup()
|
D | import.c | 962 PyObject *hook = PyList_GetItem(path_hooks, j); in get_path_importer()
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 325 function,PyList_GetItem,3.2,
|
D | refcounts.dat | 1107 PyList_GetItem:PyObject*::0: 1108 PyList_GetItem:PyObject*:list:0: 1109 PyList_GetItem:Py_ssize_t:index::
|
/third_party/python/PC/ |
D | python3dll.c | 311 EXPORT_FUNC(PyList_GetItem)
|
/third_party/python/Doc/faq/ |
D | extending.rst | 85 :c:func:`PyList_GetItem`.
|
/third_party/python/Doc/extending/ |
D | extending.rst | 977 :c:func:`PyTuple_GetItem`, :c:func:`PyList_GetItem`, :c:func:`PyDict_GetItem`, and 1019 PyObject *item = PyList_GetItem(list, 0); 1050 PyObject *item = PyList_GetItem(list, 0); 1074 PyObject *item = PyList_GetItem(list, 0);
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | descriptor_containers.cc | 358 PyObject* value2 = PyList_GetItem(other, index); in DescriptorSequence_Equal()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 804 function PyList_GetItem
|
/third_party/python/Objects/ |
D | listobject.c | 225 PyList_GetItem(PyObject *op, Py_ssize_t i) in PyList_GetItem() function
|