Home
last modified time | relevance | path

Searched refs:PyTuple_GetSlice (Results 1 – 15 of 15) sorted by relevance

/external/python/cpython2/Include/
Dtupleobject.h44 PyAPI_FUNC(PyObject *) PyTuple_GetSlice(PyObject *, Py_ssize_t, Py_ssize_t);
/external/python/cpython2/Objects/
Ddescrobject.c242 args = PyTuple_GetSlice(args, 1, argc); in methoddescr_call()
294 args = PyTuple_GetSlice(args, 1, argc); in classmethoddescr_call()
338 args = PyTuple_GetSlice(args, 1, argc); in wrapperdescr_call()
Dtupleobject.c426 PyTuple_GetSlice(PyObject *op, Py_ssize_t i, Py_ssize_t j) in PyTuple_GetSlice() function
Dexceptions.c621 subslice = PyTuple_GetSlice(args, 0, 2); in EnvironmentError_init()
Dtypeobject.c2084 args = PyTuple_GetSlice(args, 0, 0); in type_init()
4919 args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
/external/python/cpython2/PC/os2vacpp/
Dpython.def406 PyTuple_GetSlice
/external/python/cpython2/Modules/
D_functoolsmodule.c129 pto->args = PyTuple_GetSlice(args, 1, PY_SSIZE_T_MAX); in partial_new()
D_struct.c1880 newargs = PyTuple_GetSlice(args, 1, n); in pack()
1910 newargs = PyTuple_GetSlice(args, 1, n); in pack_into()
1960 newargs = PyTuple_GetSlice(args, 1, n); in unpack_from()
Doperator.c811 mc->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); in methodcaller_new()
/external/python/cpython2/Doc/c-api/
Dtuple.rst101 .. c:function:: PyObject* PyTuple_GetSlice(PyObject *p, Py_ssize_t low, Py_ssize_t high)
/external/python/cpython2/Doc/data/
Drefcounts.dat1376 PyTuple_GetSlice:PyObject*::+1:
1377 PyTuple_GetSlice:PyTupleObject*:p:0:
1378 PyTuple_GetSlice:int:low::
1379 PyTuple_GetSlice:int:high::
/external/python/cpython2/Modules/_io/
Dstringio.c729 initarg = PyTuple_GetSlice(state, 0, 2); in stringio_setstate()
/external/python/cpython2/PC/os2emx/
Dpython27.def570 "PyTuple_GetSlice"
/external/python/cpython2/Python/
Dbltinmodule.c2249 newargs = PyTuple_GetSlice(args, 1, 4); in builtin_sorted()
/external/python/cpython2/Modules/_ctypes/
D_ctypes.c3673 return PyTuple_GetSlice(inargs, 1, PyTuple_GET_SIZE(inargs)); in _build_callargs()