Home
last modified time | relevance | path

Searched refs:p_unicode (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Doc/c-api/
Dunicode.rst1502 .. c:function:: void PyUnicode_InternInPlace(PyObject **p_unicode)
1504 Intern the argument :c:expr:`*p_unicode` in place. The argument must be the address of a
1506 … existing interned string that is the same as :c:expr:`*p_unicode`, it sets :c:expr:`*p_unicode` to
1509 :c:expr:`*p_unicode` alone and interns it.
1520 :c:expr:`PyUnicode_CheckExact(*p_unicode)` must be true. If it is not,
/external/python/cpython3/Objects/
Dunicodeobject.c1817 unicode_resize(PyObject **p_unicode, Py_ssize_t length) in unicode_resize() argument
1822 assert(p_unicode != NULL); in unicode_resize()
1823 unicode = *p_unicode; in unicode_resize()
1835 Py_SETREF(*p_unicode, empty); in unicode_resize()
1843 Py_SETREF(*p_unicode, copy); in unicode_resize()
1851 *p_unicode = new_unicode; in unicode_resize()
1858 PyUnicode_Resize(PyObject **p_unicode, Py_ssize_t length) in PyUnicode_Resize() argument
1861 if (p_unicode == NULL) { in PyUnicode_Resize()
1865 unicode = *p_unicode; in PyUnicode_Resize()
1871 return unicode_resize(p_unicode, length); in PyUnicode_Resize()
[all …]
/external/python/cpython3/Doc/data/
Dpython3.13.abi10291 …<parameter type-id='type-id-238' name='p_unicode' filepath='Objects/unicodeobject.c' line='1858' c…