Home
last modified time | relevance | path

Searched refs:unicode_resize (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
Dunicodeobject.c1875 unicode_resize(PyObject **p_unicode, Py_ssize_t length) in unicode_resize() function
1934 return unicode_resize(p_unicode, length); in PyUnicode_Resize()
4189 if (unicode_resize(output, requiredsize) < 0) in unicode_decode_call_errorhandler_wchar()
7147 if (unicode_resize(v, n + outsize) < 0) in decode_code_page_strict()
7233 if (unicode_resize(v, n + size * Py_ARRAY_LENGTH(buffer)) < 0) in decode_code_page_errors()
7295 if (unicode_resize(v, outsize) < 0) in decode_code_page_errors()
11346 if (unicode_resize(p_left, new_len) != 0) in PyUnicode_Append()
/external/python/cpython2/Objects/
Dunicodeobject.c260 int unicode_resize(register PyUnicodeObject *unicode, in unicode_resize() function
341 unicode_resize(unicode, length) < 0) { in _PyUnicode_New()
445 return unicode_resize(v, length); in _PyUnicode_Resize()