Home
last modified time | relevance | path

Searched refs:PyUnicode_IS_READY (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/
Dunicodeobject.h268 static inline unsigned int PyUnicode_IS_READY(PyObject *op) { in PyUnicode_IS_READY() function
272 # define PyUnicode_IS_READY(op) PyUnicode_IS_READY(_PyObject_CAST(op)) macro
279 assert(PyUnicode_IS_READY(op)); in PyUnicode_IS_ASCII()
317 (assert(PyUnicode_IS_READY(op)), \
359 assert(PyUnicode_IS_READY(op)); in PyUnicode_GET_LENGTH()
422 assert(PyUnicode_IS_READY(unicode)); in PyUnicode_READ_CHAR()
445 assert(PyUnicode_IS_READY(op)); in PyUnicode_MAX_CHAR_VALUE()
494 if (PyUnicode_IS_READY(op)) { in PyUnicode_READY()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/
Dunicodeobject.h268 static inline unsigned int PyUnicode_IS_READY(PyObject *op) { in PyUnicode_IS_READY() function
272 # define PyUnicode_IS_READY(op) PyUnicode_IS_READY(_PyObject_CAST(op)) macro
279 assert(PyUnicode_IS_READY(op)); in PyUnicode_IS_ASCII()
317 (assert(PyUnicode_IS_READY(op)), \
359 assert(PyUnicode_IS_READY(op)); in PyUnicode_GET_LENGTH()
422 assert(PyUnicode_IS_READY(unicode)); in PyUnicode_READ_CHAR()
445 assert(PyUnicode_IS_READY(op)); in PyUnicode_MAX_CHAR_VALUE()
494 if (PyUnicode_IS_READY(op)) { in PyUnicode_READY()
/aosp_15_r20/external/python/cpython3/Include/cpython/
Dunicodeobject.h268 static inline unsigned int PyUnicode_IS_READY(PyObject *op) { in PyUnicode_IS_READY() function
272 # define PyUnicode_IS_READY(op) PyUnicode_IS_READY(_PyObject_CAST(op)) macro
279 assert(PyUnicode_IS_READY(op)); in PyUnicode_IS_ASCII()
317 (assert(PyUnicode_IS_READY(op)), \
359 assert(PyUnicode_IS_READY(op)); in PyUnicode_GET_LENGTH()
422 assert(PyUnicode_IS_READY(unicode)); in PyUnicode_READ_CHAR()
445 assert(PyUnicode_IS_READY(op)); in PyUnicode_MAX_CHAR_VALUE()
494 if (PyUnicode_IS_READY(op)) { in PyUnicode_READY()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/
Dunicodeobject.h268 static inline unsigned int PyUnicode_IS_READY(PyObject *op) { in PyUnicode_IS_READY() function
272 # define PyUnicode_IS_READY(op) PyUnicode_IS_READY(_PyObject_CAST(op)) macro
279 assert(PyUnicode_IS_READY(op)); in PyUnicode_IS_ASCII()
317 (assert(PyUnicode_IS_READY(op)), \
359 assert(PyUnicode_IS_READY(op)); in PyUnicode_GET_LENGTH()
422 assert(PyUnicode_IS_READY(unicode)); in PyUnicode_READ_CHAR()
445 assert(PyUnicode_IS_READY(op)); in PyUnicode_MAX_CHAR_VALUE()
494 if (PyUnicode_IS_READY(op)) { in PyUnicode_READY()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/
Dunicodeobject.h268 static inline unsigned int PyUnicode_IS_READY(PyObject *op) { in PyUnicode_IS_READY() function
272 # define PyUnicode_IS_READY(op) PyUnicode_IS_READY(_PyObject_CAST(op)) macro
279 assert(PyUnicode_IS_READY(op)); in PyUnicode_IS_ASCII()
317 (assert(PyUnicode_IS_READY(op)), \
359 assert(PyUnicode_IS_READY(op)); in PyUnicode_GET_LENGTH()
422 assert(PyUnicode_IS_READY(unicode)); in PyUnicode_READ_CHAR()
445 assert(PyUnicode_IS_READY(op)); in PyUnicode_MAX_CHAR_VALUE()
494 if (PyUnicode_IS_READY(op)) { in PyUnicode_READY()
/aosp_15_r20/external/python/cpython3/Objects/stringlib/
Deq.h11 assert(PyUnicode_IS_READY(aa)); in unicode_eq()
12 assert(PyUnicode_IS_READY(bb)); in unicode_eq()
/aosp_15_r20/external/python/cpython3/Objects/
Dunicodeobject.c118 assert(PyUnicode_IS_READY(op)), \
126 assert(PyUnicode_IS_READY(op)), \
159 (PyUnicode_IS_READY(op) ? \
182 (!PyUnicode_IS_READY(op) || \
689 if (PyUnicode_IS_READY(unicode)) in unicode_result()
720 assert(PyUnicode_IS_READY(unicode)); in backslashreplace()
787 assert(PyUnicode_IS_READY(unicode)); in xmlcharrefreplace()
1032 assert(PyUnicode_IS_READY(unicode)); in resize_compact()
1098 if (PyUnicode_IS_READY(unicode)) { in resize_inplace()
1176 assert(PyUnicode_IS_READY(unicode)); in resize_copy()
[all …]
Dtypeobject.c43 PyUnicode_IS_READY(name) && \
/aosp_15_r20/external/python/cpython3/Parser/
Dpegen.c461 assert(PyUnicode_IS_READY(id)); in _PyPegen_new_identifier()
/aosp_15_r20/external/python/cpython3/Modules/
D_tracemalloc.c332 if (!PyUnicode_IS_READY(filename)) { in tracemalloc_get_frame()
D_testcapimodule.c2382 assert(!PyUnicode_IS_READY(u)); in unicode_legacy_string()
/aosp_15_r20/external/python/cpython3/Python/
Dformatter_unicode.c775 assert(PyUnicode_IS_READY(value)); in format_string_internal()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst2605 * :c:func:`PyUnicode_IS_READY`