/external/python/cpython2/Modules/ |
D | cgensupport.c | 23 args = PyTuple_GetItem(args, i); in PyArg_GetObject() 42 args = PyTuple_GetItem(args, i); in PyArg_GetLong() 183 w = PyTuple_GetItem(v, i); in PyArg_GetLongArray() 220 w = PyTuple_GetItem(v, i); in PyArg_GetShortArray() 257 w = PyTuple_GetItem(v, i); in PyArg_GetDoubleArray() 290 w = PyTuple_GetItem(v, i); in PyArg_GetFloatArray()
|
D | dlmodule.c | 90 name = PyTuple_GetItem(args, 0); in dl_call() 109 PyObject *v = PyTuple_GetItem(args, i); in dl_call()
|
D | zipimport.c | 1191 time = PyInt_AsLong(PyTuple_GetItem(toc_entry, 5)); in get_mtime_of_source() 1192 date = PyInt_AsLong(PyTuple_GetItem(toc_entry, 6)); in get_mtime_of_source() 1216 modpath = PyString_AsString(PyTuple_GetItem(toc_entry, 0)); in get_code_from_data() 1274 PyTuple_GetItem(toc_entry, 0)); in get_module_code()
|
D | _tkinter.c | 429 PyObject *v = PyTuple_GetItem(args, i); in Merge() 590 elem = PyTuple_GetItem(arg, i); in SplitObj() 606 elem = PyTuple_GetItem(arg, k); in SplitObj() 1155 argv[i] = AsObj(PyTuple_GetItem(value,i)); in AsObj() 1490 PyObject *v = PyTuple_GetItem(args, i); in Tkapp_CallArgs() 1606 PyObject* item = PyTuple_GetItem(args, 0); in Tkapp_Call() 2109 PyObject* o = PyTuple_GetItem(args, 0); in Tkapp_GetInt() 2156 PyObject *o = PyTuple_GetItem(args, 0); in Tkapp_GetDouble()
|
D | cstubs | 114 getitem = PyTuple_GetItem; 217 getitem = PyTuple_GetItem; 230 wnorm = PyTuple_GetItem(w, inorm); 231 wvec = PyTuple_GetItem(w, 1 - inorm);
|
/external/python/cpython2/Modules/_sqlite/ |
D | row.c | 75 PyObject* item = PyTuple_GetItem(self->data, idx); in pysqlite_row_item() 96 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript() 105 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript() 137 item = PyTuple_GetItem(self->data, i); in pysqlite_row_subscript()
|
/external/python/cpython3/Modules/_sqlite/ |
D | row.c | 74 PyObject* item = PyTuple_GetItem(self->data, idx); in pysqlite_row_item() 97 item = PyTuple_GetItem(self->data, _idx); in pysqlite_row_subscript() 134 item = PyTuple_GetItem(self->data, i); in pysqlite_row_subscript()
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | numpy_bridge.cc | 252 XlaShapeFromPyShape(PyTuple_GetItem(py_subshapes, i))); in XlaShapeFromPyShape() 280 dimensions[i] = PyIntOrPyLongToLong(PyTuple_GetItem(py_dimensions, i)); in XlaShapeFromPyShape() 287 PyIntOrPyLongToLong(PyTuple_GetItem(py_minor_to_major, i)); in XlaShapeFromPyShape() 404 PyObject* element = PyTuple_GetItem(o, i); in XlaLiteralFromPyObject()
|
D | xla_data.i | 401 PyObject* first = PyTuple_GetItem(o, 0); 414 PyObject* second = PyTuple_GetItem(o, 1);
|
/external/python/cpython2/Include/ |
D | tupleobject.h | 42 PyAPI_FUNC(PyObject *) PyTuple_GetItem(PyObject *, Py_ssize_t);
|
/external/python/cpython2/RISCOS/Modules/ |
D | drawfmodule.c | 194 { dash_pattern->elements[i]=(int)PyInt_AsLong(PyTuple_GetItem(dp,i)); in DrawF_Path() 206 *pe++=PyInt_AsLong(PyTuple_GetItem(p,0)); in DrawF_Path() 207 *pe++=PyInt_AsLong(PyTuple_GetItem(p,1)); in DrawF_Path() 434 par=PyTuple_GetItem(arg,0); in SetWord() 443 { par=PyTuple_GetItem(arg,m); in SetWord()
|
D | swimodule.c | 349 name=PyTuple_GetItem(args,0); in swi_swi() 356 format=PyTuple_GetItem(args,1); in swi_swi() 369 v=PyTuple_GetItem(args,j++); in swi_swi()
|
/external/python/cpython3/Include/ |
D | tupleobject.h | 45 PyAPI_FUNC(PyObject *) PyTuple_GetItem(PyObject *, Py_ssize_t);
|
/external/python/cpython2/Doc/c-api/ |
D | tuple.rst | 82 .. c:function:: PyObject* PyTuple_GetItem(PyObject *p, Py_ssize_t pos) 94 Like :c:func:`PyTuple_GetItem`, but does no checking of its arguments.
|
/external/python/cpython3/Modules/ |
D | zipimport.c | 1492 time = PyLong_AsLong(PyTuple_GetItem(toc_entry, 5)); in get_mtime_of_source() 1493 date = PyLong_AsLong(PyTuple_GetItem(toc_entry, 6)); in get_mtime_of_source() 1512 modpath = PyTuple_GetItem(toc_entry, 0); in get_code_from_data() 1581 *p_modpath = PyTuple_GetItem(toc_entry, 0); in get_module_code()
|
/external/python/cpython3/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.
|
/external/python/cpython2/Objects/ |
D | classobject.c | 217 PyTuple_GetItem(cp->cl_bases, i), name, pclass); in class_lookup() 505 if (PyClass_IsSubclass(PyTuple_GetItem(cp->cl_bases, i), base)) in PyClass_IsSubclass() 1500 v1 = PyTuple_GetItem(coerced, 0); in half_binop() 1501 w = PyTuple_GetItem(coerced, 1); in half_binop() 1591 *pv = PyTuple_GetItem(coerced, 0); in instance_coerce() 1592 *pw = PyTuple_GetItem(coerced, 1); in instance_coerce()
|
D | structseq.c | 267 val = PyTuple_GetItem(tup, i); in structseq_repr()
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 405 PyTuple_GetItem
|
/external/python/cpython3/Misc/ |
D | gdbinit | 40 set $_name = PyUnicode_AsUTF8(PyTuple_GetItem($_names, $_i))
|
/external/python/cpython2/Misc/ |
D | gdbinit | 40 set $_name = PyString_AsString(PyTuple_GetItem($_names, $_i))
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 960 func = PyTuple_GetItem(args, 0); in builtin_map() 969 return PySequence_List(PyTuple_GetItem(args, 1)); in builtin_map() 994 curseq = PyTuple_GetItem(args, i+1); in builtin_map() 1685 err = PyFile_WriteObject(PyTuple_GetItem(args, i), file, in builtin_print()
|
D | ceval.c | 835 #define GETITEM(v, i) PyTuple_GetItem((v), (i)) in PyEval_EvalFrameEx() 1231 PyTuple_GetItem(co->co_varnames, oparg)); in PyEval_EvalFrameEx() 2411 PyTuple_GetItem(co->co_varnames, oparg) in PyEval_EvalFrameEx() 5042 globals = PyTuple_GetItem(prog, 1); in exec_statement() 5044 locals = PyTuple_GetItem(prog, 2); in exec_statement() 5045 prog = PyTuple_GetItem(prog, 0); in exec_statement()
|
/external/tensorflow/tensorflow/python/lib/core/ |
D | bfloat16.cc | 244 PyObject* arg = PyTuple_GetItem(args, 0); in PyBfloat16_New()
|
/external/python/cpython3/PC/ |
D | python3.def | 585 PyTuple_GetItem=python37.PyTuple_GetItem
|