Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/stringlib/
Deq.h11 assert(PyUnicode_IS_READY(aa)); in unicode_eq()
12 assert(PyUnicode_IS_READY(bb)); in unicode_eq()
/external/python/cpython3/Include/cpython/
Dunicodeobject.h300 assert(PyUnicode_IS_READY(op)), \
336 assert(PyUnicode_IS_READY(op)), \
399 assert(PyUnicode_IS_READY(unicode)), \
414 assert(PyUnicode_IS_READY(op)), \
421 #define PyUnicode_IS_READY(op) (((PyASCIIObject*)op)->state.ready) macro
429 (PyUnicode_IS_READY(op) ? \
436 (assert(PyUnicode_IS_READY(op)), \
/external/python/cpython3/Objects/
Dunicodeobject.c109 assert(PyUnicode_IS_READY(op)), \
117 assert(PyUnicode_IS_READY(op)), \
150 (PyUnicode_IS_READY(op) ? \
173 (!PyUnicode_IS_READY(op) || \
712 if (PyUnicode_IS_READY(unicode)) in unicode_result()
743 assert(PyUnicode_IS_READY(unicode)); in backslashreplace()
810 assert(PyUnicode_IS_READY(unicode)); in xmlcharrefreplace()
1051 assert(PyUnicode_IS_READY(unicode)); in resize_compact()
1117 if (PyUnicode_IS_READY(unicode)) { in resize_inplace()
1195 assert(PyUnicode_IS_READY(unicode)); in resize_copy()
[all …]
Dtypeobject.c42 PyUnicode_IS_READY(name) && \
/external/python/cpython3/Modules/
D_tracemalloc.c328 if (!PyUnicode_IS_READY(filename)) { in tracemalloc_get_frame()
D_testcapimodule.c2093 assert(!PyUnicode_IS_READY(u)); in unicode_legacy_string()
/external/python/cpython3/Python/
Dformatter_unicode.c771 assert(PyUnicode_IS_READY(value)); in format_string_internal()
Dast.c610 assert(PyUnicode_IS_READY(id)); in new_identifier()
/external/python/cpython3/Parser/pegen/
Dpegen.c88 assert(PyUnicode_IS_READY(id)); in _PyPegen_new_identifier()