Home
last modified time | relevance | path

Searched refs:replstr (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Include/
Dunicodeobject.h956 PyObject *replstr, /* Substring to replace */
/external/python/cpython2/Include/
Dunicodeobject.h1275 PyObject *replstr, /* Substring to replace */
/external/python/cpython2/Doc/c-api/
Dunicode.rst1075 .. c:function:: PyObject* PyUnicode_Replace(PyObject *str, PyObject *substr, PyObject *replstr, Py_…
1077 Replace at most *maxcount* occurrences of *substr* in *str* with *replstr* and
/external/python/cpython2/Doc/data/
Drefcounts.dat1699 PyUnicode_Replace:PyObject*:replstr:0:
/external/python/cpython3/Doc/c-api/
Dunicode.rst1670 PyObject *replstr, Py_ssize_t maxcount)
1672 Replace at most *maxcount* occurrences of *substr* in *str* with *replstr* and
/external/python/cpython3/Doc/data/
Drefcounts.dat2730 PyUnicode_Replace:PyObject*:replstr:0:
/external/python/cpython3/Objects/
Dunicodeobject.c12847 PyObject *replstr, in PyUnicode_Replace() argument
12851 ensure_unicode(replstr) < 0) in PyUnicode_Replace()
12853 return replace(str, substr, replstr, maxcount); in PyUnicode_Replace()