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.h370 (PyUnicode_IS_COMPACT_ASCII(op) ? \
432 #define PyUnicode_IS_COMPACT_ASCII(op) \ macro
/external/python/cpython3/Objects/
Dunicodeobject.c98 PyUnicode_IS_COMPACT_ASCII(op) ? \
106 PyUnicode_IS_COMPACT_ASCII(op) ? \
137 assert(!PyUnicode_IS_COMPACT_ASCII(op)), \
146 ((!PyUnicode_IS_COMPACT_ASCII(op) \
1219 printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode)); in _PyUnicode_data()
3826 assert(!PyUnicode_IS_COMPACT_ASCII(unicode)); in PyUnicode_AsUTF8AndSize()
3933 if (!PyUnicode_IS_COMPACT_ASCII(unicode)) in PyUnicode_AsUnicodeAndSize()
13849 if (PyUnicode_IS_COMPACT_ASCII(self)) in unicode_sizeof_impl()
/external/python/cpython3/Modules/
Dsocketmodule.c1558 if (PyUnicode_IS_COMPACT_ASCII(obj)) { in idna_converter()