Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dunicodeobject.h229 Py_ssize_t wstr_length; /* Number of code points in wstr, possible member
449 ((PyCompactUnicodeObject*)op)->wstr_length; in _PyUnicode_get_wstr_length()
/external/python/cpython3/Python/
Dtraceback.c699 size = ((PyCompactUnicodeObject *)text)->wstr_length; in _Py_DumpASCII()
/external/python/cpython3/Objects/
Dunicodeobject.c129 ((PyCompactUnicodeObject*)op)->wstr_length)
131 (((PyCompactUnicodeObject*)(op))->wstr_length)
582 CHECK(compact->wstr_length == ascii->length); in _PyUnicode_CheckConsistency()
590 CHECK(compact->wstr_length == 0); in _PyUnicode_CheckConsistency()
1375 printf(" (%" PY_FORMAT_SIZE_T "u), ", compact->wstr_length); in _PyUnicode_Dump()