/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() 2152 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);
|
D | datetimemodule.c | 1566 num = PyTuple_GetItem(tuple, 1); /* us */ in microseconds_to_delta_ex() 1581 num = PyTuple_GetItem(tuple, 0); /* leftover seconds */ in microseconds_to_delta_ex() 1592 num = PyTuple_GetItem(tuple, 1); /* seconds */ in microseconds_to_delta_ex() 1608 num = PyTuple_GetItem(tuple, 0); /* leftover days */ in microseconds_to_delta_ex()
|
D | posixmodule.c | 2645 if (PyUnicode_Check(PyTuple_GetItem(args, 0))) { in posix__getfullpathname() 3172 getitem = PyTuple_GetItem; in posix_execv() 3248 getitem = PyTuple_GetItem; in posix_execve() 3391 getitem = PyTuple_GetItem; in posix_spawnv() 3483 getitem = PyTuple_GetItem; in posix_spawnve() 3633 getitem = PyTuple_GetItem; in posix_spawnvp() 3716 getitem = PyTuple_GetItem; in posix_spawnvpe()
|
D | svmodule.c | 685 PyObject* cell = PyTuple_GetItem(v, j); in sv_LoadMap()
|
D | stropmodule.c | 1199 newstr = PyTuple_GetItem(args, 0); in strop_replace()
|
/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/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/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/cpython2/Objects/ |
D | classobject.c | 217 PyTuple_GetItem(cp->cl_bases, i), name, pclass); in class_lookup() 506 if (PyClass_IsSubclass(PyTuple_GetItem(cp->cl_bases, i), base)) in PyClass_IsSubclass() 1501 v1 = PyTuple_GetItem(coerced, 0); in half_binop() 1502 w = PyTuple_GetItem(coerced, 1); in half_binop() 1592 *pv = PyTuple_GetItem(coerced, 0); in instance_coerce() 1593 *pw = PyTuple_GetItem(coerced, 1); in instance_coerce()
|
D | structseq.c | 267 val = PyTuple_GetItem(tup, i); in structseq_repr()
|
D | funcobject.c | 30 doc = PyTuple_GetItem(consts, 0); in PyFunction_New()
|
D | tupleobject.c | 122 PyTuple_GetItem(register PyObject *op, register Py_ssize_t i) in PyTuple_GetItem() function
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 405 PyTuple_GetItem
|
/external/python/cpython2/Misc/ |
D | gdbinit | 40 set $_name = PyString_AsString(PyTuple_GetItem($_names, $_i))
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 959 func = PyTuple_GetItem(args, 0); in builtin_map() 968 return PySequence_List(PyTuple_GetItem(args, 1)); in builtin_map() 993 curseq = PyTuple_GetItem(args, i+1); in builtin_map() 1684 err = PyFile_WriteObject(PyTuple_GetItem(args, i), file, in builtin_print()
|
D | ceval.c | 827 #define GETITEM(v, i) PyTuple_GetItem((v), (i)) in PyEval_EvalFrameEx() 1223 PyTuple_GetItem(co->co_varnames, oparg)); in PyEval_EvalFrameEx() 2399 PyTuple_GetItem(co->co_varnames, oparg) in PyEval_EvalFrameEx() 5003 globals = PyTuple_GetItem(prog, 1); in exec_statement() 5005 locals = PyTuple_GetItem(prog, 2); in exec_statement() 5006 prog = PyTuple_GetItem(prog, 0); in exec_statement()
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1372 PyTuple_GetItem:PyObject*::0: 1373 PyTuple_GetItem:PyTupleObject*:p:0: 1374 PyTuple_GetItem:int:pos::
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 568 "PyTuple_GetItem"
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 941 typedict = PyTuple_GetItem(args, 2); in PyCPointerType_new() 1389 typedict = PyTuple_GetItem(args, 2); in PyCArrayType_new() 3916 this = (CDataObject *)PyTuple_GetItem(inargs, 0); /* borrowed ref! */ in PyCFuncPtr_call()
|