Home
last modified time | relevance | path

Searched refs:PyList_Reverse (Results 1 – 17 of 17) sorted by relevance

/external/python/cpython2/Objects/stringlib/
Dsplit.h236 if (PyList_Reverse(list) < 0) in stringlib_rsplit_whitespace()
280 if (PyList_Reverse(list) < 0) in stringlib_rsplit_char()
329 if (PyList_Reverse(list) < 0) in stringlib_rsplit()
/external/python/cpython3/Objects/stringlib/
Dsplit.h233 if (PyList_Reverse(list) < 0) in STRINGLIB()
277 if (PyList_Reverse(list) < 0) in STRINGLIB()
326 if (PyList_Reverse(list) < 0) in STRINGLIB()
/external/python/cpython2/Include/
Dlistobject.h56 PyAPI_FUNC(int) PyList_Reverse(PyObject *);
/external/python/cpython3/Include/
Dlistobject.h61 PyAPI_FUNC(int) PyList_Reverse(PyObject *);
/external/python/cpython2/PC/os2vacpp/
Dpython.def227 PyList_Reverse
/external/python/cpython3/Doc/c-api/
Dlist.rst133 .. c:function:: int PyList_Reverse(PyObject *list)
/external/python/cpython2/Modules/
D_heapqmodule.c362 if (PyList_Reverse(heap) == -1) in nlargest()
D_testcapimodule.c104 i = PyList_Reverse(list); /* should not blow up! */ in test_list_api()
/external/python/cpython2/Doc/c-api/
Dlist.rst178 .. c:function:: int PyList_Reverse(PyObject *list)
/external/python/cpython3/PC/
Dpython3.def309 PyList_Reverse=python37.PyList_Reverse
/external/python/cpython2/PC/os2emx/
Dpython27.def385 "PyList_Reverse"
/external/python/cpython2/Doc/data/
Drefcounts.dat610 PyList_Reverse:int:::
611 PyList_Reverse:PyObject*:list:0:
/external/python/cpython3/Doc/data/
Drefcounts.dat1088 PyList_Reverse:int:::
1089 PyList_Reverse:PyObject*:list:0:
/external/python/cpython2/Objects/
Dlistobject.c2238 PyList_Reverse(PyObject *v) in PyList_Reverse() function
/external/python/cpython3/Objects/
Dlistobject.c2433 PyList_Reverse(PyObject *v) in PyList_Reverse() function
/external/python/cpython3/Modules/
D_testcapimodule.c154 i = PyList_Reverse(list); /* should not blow up! */ in test_list_api()
Dposixmodule.c418 PyList_Reverse(cpy); in run_at_forkers()