Searched defs:PyUnicode_AsEncodedString (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Include/
H A Dunicodeobject.h151 # define PyUnicode_AsEncodedString PyUnicodeUCS2_AsEncodedString macro
238 # define PyUnicode_AsEncodedString PyUnicodeUCS4_AsEncodedString macro
714 PyAPI_FUNC(PyObject*) PyUnicode_AsEncodedString(
/external/python/cpython2/Objects/
H A Dunicodeobject.c1316 v = PyUnicode_AsEncodedString(unicode, encoding, errors);
1345 PyObject *PyUnicode_AsEncodedString(PyObject *unicode, function
1397 v = PyUnicode_AsEncodedString(unicode, NULL, errors);
7657 return PyUnicode_AsEncodedString((PyObject *)self, NULL, NULL);
/external/python/cpython3/Objects/
H A Dunicodeobject.c3306 v = PyUnicode_AsEncodedString(unicode, encoding, errors);
3325 "use PyUnicode_AsEncodedString() to encode from str to bytes "
3537 return PyUnicode_AsEncodedString(unicode,
3548 PyUnicode_AsEncodedString(PyObject *unicode, function
11526 return PyUnicode_AsEncodedString(self, encoding, errors);

Completed in 248 milliseconds