Searched refs:PyTuple_GetSlice (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython2/Include/ |
D | tupleobject.h | 44 PyAPI_FUNC(PyObject *) PyTuple_GetSlice(PyObject *, Py_ssize_t, Py_ssize_t);
|
/external/python/cpython2/Objects/ |
D | descrobject.c | 242 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()
|
D | tupleobject.c | 426 PyTuple_GetSlice(PyObject *op, Py_ssize_t i, Py_ssize_t j) in PyTuple_GetSlice() function
|
D | exceptions.c | 621 subslice = PyTuple_GetSlice(args, 0, 2); in EnvironmentError_init()
|
D | typeobject.c | 2084 args = PyTuple_GetSlice(args, 0, 0); in type_init() 4919 args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 406 PyTuple_GetSlice
|
/external/python/cpython2/Modules/ |
D | _functoolsmodule.c | 129 pto->args = PyTuple_GetSlice(args, 1, PY_SSIZE_T_MAX); in partial_new()
|
D | _struct.c | 1880 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()
|
D | operator.c | 811 mc->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args)); in methodcaller_new()
|
/external/python/cpython2/Doc/c-api/ |
D | tuple.rst | 101 .. c:function:: PyObject* PyTuple_GetSlice(PyObject *p, Py_ssize_t low, Py_ssize_t high)
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 1376 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/ |
D | stringio.c | 729 initarg = PyTuple_GetSlice(state, 0, 2); in stringio_setstate()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 570 "PyTuple_GetSlice"
|
/external/python/cpython2/Python/ |
D | bltinmodule.c | 2249 newargs = PyTuple_GetSlice(args, 1, 4); in builtin_sorted()
|
/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 3673 return PyTuple_GetSlice(inargs, 1, PyTuple_GET_SIZE(inargs)); in _build_callargs()
|