Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dunicodeobject.h310 #define PyUnicode_IS_COMPACT_ASCII(op) \ macro
447 return PyUnicode_IS_COMPACT_ASCII(op) ? in _PyUnicode_get_wstr_length()
/external/python/cpython3/Objects/
Dunicodeobject.c110 PyUnicode_IS_COMPACT_ASCII(op) ? \
118 PyUnicode_IS_COMPACT_ASCII(op) ? \
127 (PyUnicode_IS_COMPACT_ASCII(op) ? \
156 assert(!PyUnicode_IS_COMPACT_ASCII(op)), \
165 ((!PyUnicode_IS_COMPACT_ASCII(op) \
1343 printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode)); in _PyUnicode_data()
4095 if (!PyUnicode_IS_COMPACT_ASCII(unicode)) { in PyUnicode_AsUnicodeAndSize()
14191 if (PyUnicode_IS_COMPACT_ASCII(self)) in unicode_sizeof_impl()
/external/python/cpython3/Modules/
Dsocketmodule.c1659 if (PyUnicode_IS_COMPACT_ASCII(obj)) { in idna_converter()