Home
last modified time | relevance | path

Searched refs:PyUnicode_RPartition (Results 1 – 3 of 3) 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/cpython2/Objects/
Dunicodeobject.c7534 PyUnicode_RPartition(PyObject *str_in, PyObject *sep_in) in PyUnicode_RPartition() function
7583 return PyUnicode_RPartition((PyObject *)self, separator); in unicode_rpartition()
Dstringobject.c1530 return PyUnicode_RPartition((PyObject *) self, sep_obj); in string_rpartition()