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.h297 static inline int PyUnicode_IS_COMPACT_ASCII(PyObject *op) { in PyUnicode_IS_COMPACT_ASCII() function
301 # define PyUnicode_IS_COMPACT_ASCII(op) PyUnicode_IS_COMPACT_ASCII(_PyObject_CAST(op)) macro
635 if (PyUnicode_IS_COMPACT_ASCII(op)) { in PyUnicode_WSTR_LENGTH()
/third_party/python/Objects/
Dunicodeobject.c119 PyUnicode_IS_COMPACT_ASCII(op) ? \
127 PyUnicode_IS_COMPACT_ASCII(op) ? \
136 (PyUnicode_IS_COMPACT_ASCII(op) ? \
165 assert(!PyUnicode_IS_COMPACT_ASCII(op)), \
174 ((!PyUnicode_IS_COMPACT_ASCII(op) \
1323 printf("compact ascii %d\n", PyUnicode_IS_COMPACT_ASCII(unicode)); in _PyUnicode_data()
4223 if (!PyUnicode_IS_COMPACT_ASCII(unicode)) { in PyUnicode_AsUnicodeAndSize()
14128 if (PyUnicode_IS_COMPACT_ASCII(self)) in unicode_sizeof_impl()
15730 assert(PyUnicode_IS_COMPACT_ASCII(seq)); in unicode_ascii_iter_next()
15863 if (PyUnicode_IS_COMPACT_ASCII(seq)) { in unicode_iter()
/third_party/python/Modules/
Dsocketmodule.c1644 if (PyUnicode_IS_COMPACT_ASCII(obj)) { in idna_converter()