Home
last modified time | relevance | path

Searched refs:PyUnicode_IS_READY (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython3/Include/cpython/
Dunicodeobject.h307 assert(PyUnicode_IS_READY(op)), \
343 assert(PyUnicode_IS_READY(op)), \
406 assert(PyUnicode_IS_READY(unicode)), \
421 assert(PyUnicode_IS_READY(op)), \
428 #define PyUnicode_IS_READY(op) (((PyASCIIObject*)op)->state.ready) macro
436 (PyUnicode_IS_READY(op) ? \
443 (assert(PyUnicode_IS_READY(op)), \
/external/python/cpython3/Objects/
Dunicodeobject.c106 assert(PyUnicode_IS_READY(op)), \
114 assert(PyUnicode_IS_READY(op)), \
140 (PyUnicode_IS_READY(op) ? \
163 (!PyUnicode_IS_READY(op) || \
642 if (PyUnicode_IS_READY(unicode)) in unicode_result()
673 assert(PyUnicode_IS_READY(unicode)); in backslashreplace()
740 assert(PyUnicode_IS_READY(unicode)); in xmlcharrefreplace()
974 assert(PyUnicode_IS_READY(unicode)); in resize_compact()
1036 if (PyUnicode_IS_READY(unicode)) { in resize_inplace()
1114 assert(PyUnicode_IS_READY(unicode)); in resize_copy()
[all …]
Dtypeobject.c36 PyUnicode_IS_READY(name) && \
/external/python/cpython3/Python/
Dformatter_unicode.c769 assert(PyUnicode_IS_READY(value)); in format_string_internal()
Dast.c616 assert(PyUnicode_IS_READY(id)); in new_identifier()
/external/python/cpython3/Modules/
D_tracemalloc.c367 if (!PyUnicode_IS_READY(filename)) { in tracemalloc_get_frame()
D_testcapimodule.c2038 assert(!PyUnicode_IS_READY(u)); in unicode_legacy_string()