Lines Matching defs:wstr
83 * (length is the length of the utf8 and wstr strings)
98 * wstr is shared with data and wstr_length=length
101 * wstr_length = 0 if wstr is NULL
115 * wstr is not NULL
131 * wstr is shared with data.any and wstr_length = length
134 * wstr_length = 0 if wstr is NULL
205 wchar_t *wstr; /* wchar_t representation (null-terminated) */
216 Py_ssize_t wstr_length; /* Number of code points in wstr, possible
221 PyUnicodeObject structure. The actual string data is initially in the wstr
305 /* String contains only wstr byte characters. This is only possible
478 wstr/Py_UNICODE representation. This function is used to convert Unicode
656 if (_PyASCIIObject_CAST(op)->wstr == _Py_NULL) {
658 assert(_PyASCIIObject_CAST(op)->wstr != _Py_NULL);
687 wchar_t *wstr = _PyASCIIObject_CAST(op)->wstr;
688 if (wstr != _Py_NULL) {
689 return wstr;