Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dunicodeobject.h422 assert(PyUnicode_IS_READY(op)), \
458 assert(PyUnicode_IS_READY(op)), \
521 assert(PyUnicode_IS_READY(unicode)), \
536 assert(PyUnicode_IS_READY(op)), \
543 #define PyUnicode_IS_READY(op) (((PyASCIIObject*)op)->state.ready) macro
551 (PyUnicode_IS_READY(op) ? \
558 (assert(PyUnicode_IS_READY(op)), \
/external/python/cpython3/Objects/
Dunicodeobject.c97 assert(PyUnicode_IS_READY(op)), \
105 assert(PyUnicode_IS_READY(op)), \
131 (PyUnicode_IS_READY(op) ? \
154 (!PyUnicode_IS_READY(op) || \
602 if (PyUnicode_IS_READY(unicode)) in unicode_result()
633 assert(PyUnicode_IS_READY(unicode)); in backslashreplace()
700 assert(PyUnicode_IS_READY(unicode)); in xmlcharrefreplace()
934 assert(PyUnicode_IS_READY(unicode)); in resize_compact()
996 if (PyUnicode_IS_READY(unicode)) { in resize_inplace()
1074 assert(PyUnicode_IS_READY(unicode)); in resize_copy()
[all …]
Dtypeobject.c35 PyUnicode_IS_READY(name) && \
/external/python/cpython3/Modules/
D_tracemalloc.c387 if (!PyUnicode_IS_READY(filename)) { in tracemalloc_get_frame()
D_testcapimodule.c2007 assert(!PyUnicode_IS_READY(u)); in unicode_legacy_string()
/external/python/cpython3/Python/
Dformatter_unicode.c768 assert(PyUnicode_IS_READY(value)); in format_string_internal()
Dast.c636 assert(PyUnicode_IS_READY(id)); in new_identifier()