Home
last modified time | relevance | path

Searched refs:PyUnicode_Translate (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Include/
Dunicodeobject.h212 # define PyUnicode_Translate PyUnicodeUCS2_Translate macro
299 # define PyUnicode_Translate PyUnicodeUCS4_Translate macro
1223 PyAPI_FUNC(PyObject *) PyUnicode_Translate(
/external/python/cpython2/Doc/data/
Drefcounts.dat1667 PyUnicode_Translate:PyObject*::+1:
1668 PyUnicode_Translate:PyObject*:str:0:
1669 PyUnicode_Translate:PyObject*:table:0:
1670 PyUnicode_Translate:const char*:errors::
/external/python/cpython2/Doc/c-api/
Dunicode.rst1016 .. c:function:: PyObject* PyUnicode_Translate(PyObject *str, PyObject *table, const char *errors)
/external/python/cpython2/Objects/
Dstringobject.c2232 return PyUnicode_Translate((PyObject *)self, tableobj, NULL); in string_translate()
Dunicodeobject.c5196 PyObject *PyUnicode_Translate(PyObject *str, in PyUnicode_Translate() function