Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dunicodeobject.h310 #define PyUnicode_IS_COMPACT_ASCII(op) \ macro
447 return PyUnicode_IS_COMPACT_ASCII(op) ? in _PyUnicode_get_wstr_length()
/third_party/python/Objects/
Dunicodeobject.c116 PyUnicode_IS_COMPACT_ASCII(op) ? \
124 PyUnicode_IS_COMPACT_ASCII(op) ? \
133 (PyUnicode_IS_COMPACT_ASCII(op) ? \
162 assert(!PyUnicode_IS_COMPACT_ASCII(op)), \
171 ((!PyUnicode_IS_COMPACT_ASCII(op) \
1342 printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode)); in _PyUnicode_data()
4293 if (!PyUnicode_IS_COMPACT_ASCII(unicode)) { in PyUnicode_AsUnicodeAndSize()
14451 if (PyUnicode_IS_COMPACT_ASCII(self)) in unicode_sizeof_impl()
/third_party/python/Modules/
Dsocketmodule.c1614 if (PyUnicode_IS_COMPACT_ASCII(obj)) { in idna_converter()