Home
last modified time | relevance | path

Searched refs:PyUnicode_RPartition (Results 1 – 6 of 6) sorted by relevance

/external/python/cpython2/Include/
Dunicodeobject.h203 # define PyUnicode_RPartition PyUnicodeUCS2_RPartition macro
290 # define PyUnicode_RPartition PyUnicodeUCS4_RPartition macro
1187 PyAPI_FUNC(PyObject*) PyUnicode_RPartition(
/external/python/cpython3/Include/
Dunicodeobject.h857 PyAPI_FUNC(PyObject*) PyUnicode_RPartition(
/external/python/cpython3/PC/
Dpython3.def701 PyUnicode_RPartition=python39.PyUnicode_RPartition
/external/python/cpython2/Objects/
Dunicodeobject.c7529 PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in) in PyUnicode_RPartition() function
7578 return PyUnicode_RPartition((PyObject *)self, separator); in unicode_rpartition()
Dstringobject.c1536 return PyUnicode_RPartition((PyObject *) self, sep_obj); in string_rpartition()
/external/python/cpython3/Objects/
Dunicodeobject.c13293 PyUnicode_RPartition(PyObject *str_obj, PyObject *sep_obj) in PyUnicode_RPartition() function
13389 return PyUnicode_RPartition(self, sep); in unicode_rpartition()