Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dunicodeobject.h201 # define PyUnicode_Join PyUnicodeUCS2_Join macro
288 # define PyUnicode_Join PyUnicodeUCS4_Join macro
1232 PyAPI_FUNC(PyObject*) PyUnicode_Join(
/external/python/cpython2/Doc/data/
Drefcounts.dat1672 PyUnicode_Join:PyObject*::+1:
1673 PyUnicode_Join:PyObject*:separator:0:
1674 PyUnicode_Join:PyObject*:seq:0:
/external/python/cpython2/Modules/_io/
Dtextio.c1577 Py_XSETREF(result, PyUnicode_Join(_PyIO_empty_str, chunks)); in textiowrapper_read()
1834 Py_XSETREF(line, PyUnicode_Join(_PyIO_empty_str, chunks)); in _textiowrapper_readline()
/external/python/cpython2/Objects/
Dunicodeobject.c5644 PyUnicode_Join(PyObject *separator, PyObject *seq) in PyUnicode_Join() function
6079 item = PyUnicode_Join(NULL, list);
7013 return PyUnicode_Join(self, data); in unicode_join()
Dstringobject.c1635 result = PyUnicode_Join((PyObject *)self, seq); in string_join()
/external/python/cpython2/Doc/c-api/
Dunicode.rst1032 .. c:function:: PyObject* PyUnicode_Join(PyObject *separator, PyObject *seq)