Home
last modified time | relevance | path

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

/external/python/cpython3/Include/
Dunicodeobject.h374 (PyUnicode_IS_COMPACT_ASCII(op) ? \
432 #define PyUnicode_IS_COMPACT_ASCII(op) \ macro
/external/python/cpython3/Objects/
Dunicodeobject.c83 PyUnicode_IS_COMPACT_ASCII(op) ? \
91 PyUnicode_IS_COMPACT_ASCII(op) ? \
122 assert(!PyUnicode_IS_COMPACT_ASCII(op)), \
131 ((!PyUnicode_IS_COMPACT_ASCII(op) \
1178 printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode)); in _PyUnicode_data()
3984 assert(!PyUnicode_IS_COMPACT_ASCII(unicode)); in PyUnicode_AsUTF8AndSize()
4091 if (!PyUnicode_IS_COMPACT_ASCII(unicode)) in PyUnicode_AsUnicodeAndSize()
13779 if (PyUnicode_IS_COMPACT_ASCII(v)) in unicode__sizeof__()
/external/python/cpython3/Modules/
Dsocketmodule.c1497 if (PyUnicode_READY(obj) == 0 && PyUnicode_IS_COMPACT_ASCII(obj)) { in idna_converter()