Searched refs:p_unicode (Results 1 – 3 of 3) sorted by relevance
1502 .. 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 a1506 … existing interned string that is the same as :c:expr:`*p_unicode`, it sets :c:expr:`*p_unicode` to1509 :c:expr:`*p_unicode` alone and interns it.1520 :c:expr:`PyUnicode_CheckExact(*p_unicode)` must be true. If it is not,
1817 unicode_resize(PyObject **p_unicode, Py_ssize_t length) in unicode_resize() argument1822 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() argument1861 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 …]
10291 …<parameter type-id='type-id-238' name='p_unicode' filepath='Objects/unicodeobject.c' line='1858' c…