/aosp_15_r20/external/python/cpython3/Objects/ |
D | unicodeobject.c | 668 int kind = PyUnicode_KIND(unicode); in unicode_result_ready() 721 kind = PyUnicode_KIND(unicode); in backslashreplace() 788 kind = PyUnicode_KIND(unicode); in xmlcharrefreplace() 1010 int kind = PyUnicode_KIND(unicode); in unicode_fill_invalid() 1035 char_size = PyUnicode_KIND(unicode); in resize_compact() 1084 PyUnicode_WRITE(PyUnicode_KIND(unicode), PyUnicode_DATA(unicode), in resize_compact() 1107 char_size = PyUnicode_KIND(unicode); in resize_inplace() 1139 PyUnicode_WRITE(PyUnicode_KIND(unicode), data, length, 0); in resize_inplace() 1277 switch (PyUnicode_KIND(unicode)) in unicode_kind_name() 1293 switch (PyUnicode_KIND(unicode)) { in unicode_kind_name() [all …]
|
D | listobject.c | 2145 assert(PyUnicode_KIND(v) == PyUnicode_KIND(w)); in unsafe_latin_compare() 2146 assert(PyUnicode_KIND(v) == PyUnicode_1BYTE_KIND); in unsafe_latin_compare() 2384 PyUnicode_KIND(key) != PyUnicode_1BYTE_KIND) { in list_sort_impl()
|
/aosp_15_r20/external/python/cpython3/Objects/stringlib/ |
D | eq.h | 21 if (PyUnicode_KIND(a) != PyUnicode_KIND(b)) in unicode_eq() 24 PyUnicode_GET_LENGTH(a) * PyUnicode_KIND(a)) == 0; in unicode_eq()
|
D | localeutil.h | 78 enum PyUnicode_Kind kind = PyUnicode_KIND(writer->buffer); in InsertThousandsGrouping_fill()
|
/aosp_15_r20/external/python/cpython3/Modules/ |
D | _json.c | 172 kind = PyUnicode_KIND(pystr); in ascii_escape_unicode() 239 kind = PyUnicode_KIND(pystr); in escape_unicode() 267 kind = PyUnicode_KIND(rval); in escape_unicode() 407 kind = PyUnicode_KIND(pystr); in scanstring_unicode() 700 kind = PyUnicode_KIND(pystr); in _parse_object_unicode() 832 kind = PyUnicode_KIND(pystr); in _parse_array_unicode() 933 kind = PyUnicode_KIND(pystr); in _match_number_unicode() 1045 kind = PyUnicode_KIND(pystr); in scan_once_unicode()
|
D | unicodedata.c | 528 kind = PyUnicode_KIND(input); in nfd_nfkd() 598 kind = PyUnicode_KIND(result); in nfd_nfkd() 662 kind = PyUnicode_KIND(result); in nfc_nfkc() 824 kind = PyUnicode_KIND(input); in is_normalized_quickcheck()
|
D | _csv.c | 912 kind = PyUnicode_KIND(lineobj); in Reader_iternext() 1190 field_kind = PyUnicode_KIND(field); in join_append() 1225 term_kind = PyUnicode_KIND(self->dialect->lineterminator); in join_append_lineterminator()
|
D | binascii.c | 180 assert(PyUnicode_KIND(arg) == PyUnicode_1BYTE_KIND); in ascii_buffer_converter()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/cpython/ |
D | unicodeobject.h | 316 #define PyUnicode_KIND(op) \ macro 423 kind = PyUnicode_KIND(unicode); in PyUnicode_READ_CHAR() 450 kind = PyUnicode_KIND(op); in PyUnicode_MAX_CHAR_VALUE()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/cpython/ |
D | unicodeobject.h | 316 #define PyUnicode_KIND(op) \ macro 423 kind = PyUnicode_KIND(unicode); in PyUnicode_READ_CHAR() 450 kind = PyUnicode_KIND(op); in PyUnicode_MAX_CHAR_VALUE()
|
/aosp_15_r20/external/python/cpython3/Include/cpython/ |
D | unicodeobject.h | 316 #define PyUnicode_KIND(op) \ macro 423 kind = PyUnicode_KIND(unicode); in PyUnicode_READ_CHAR() 450 kind = PyUnicode_KIND(op); in PyUnicode_MAX_CHAR_VALUE()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/cpython/ |
D | unicodeobject.h | 316 #define PyUnicode_KIND(op) \ macro 423 kind = PyUnicode_KIND(unicode); in PyUnicode_READ_CHAR() 450 kind = PyUnicode_KIND(op); in PyUnicode_MAX_CHAR_VALUE()
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/cpython/ |
D | unicodeobject.h | 316 #define PyUnicode_KIND(op) \ macro 423 kind = PyUnicode_KIND(unicode); in PyUnicode_READ_CHAR() 450 kind = PyUnicode_KIND(op); in PyUnicode_MAX_CHAR_VALUE()
|
/aosp_15_r20/external/python/cpython3/Modules/_io/ |
D | textio.c | 324 kind = PyUnicode_KIND(modified); in _PyIncrementalNewlineDecoder_decode() 361 kind = PyUnicode_KIND(output); in _PyIncrementalNewlineDecoder_decode() 432 int kind = PyUnicode_KIND(output); in _PyIncrementalNewlineDecoder_decode() 834 assert(PyUnicode_KIND(self->readnl) == PyUnicode_1BYTE_KIND); in set_newline() 2070 assert(PyUnicode_KIND(readnl) == PyUnicode_1BYTE_KIND); in _PyIO_find_line_ending() 2171 kind = PyUnicode_KIND(line); in _textiowrapper_readline()
|
/aosp_15_r20/external/python/cpython3/Python/ |
D | formatter_unicode.c | 65 int kind = PyUnicode_KIND(str); in get_integer() 157 int kind = PyUnicode_KIND(format_spec); in parse_internal_render_format_spec() 451 int kind = PyUnicode_KIND(s); in parse_number()
|
D | pystrhex.c | 26 if (PyUnicode_KIND(sep) != PyUnicode_1BYTE_KIND) { in _Py_strhex_impl()
|
D | codecs.c | 714 assert(PyUnicode_KIND(res) == PyUnicode_1BYTE_KIND); in PyCodec_ReplaceErrors() 739 assert(PyUnicode_KIND(res) == PyUnicode_2BYTE_KIND); in PyCodec_ReplaceErrors()
|
D | _warnings.c | 459 kind = PyUnicode_KIND(filename); in normalize_module() 541 kind = PyUnicode_KIND(sourceline); in show_warning()
|
D | traceback.c | 530 kind = PyUnicode_KIND(lineobj); in display_source_line_with_margin()
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | _testcppext.cpp | 114 int kind = PyUnicode_KIND(str); in test_unicode()
|
/aosp_15_r20/external/python/markupsafe/src/markupsafe/ |
D | _speedups.c | 174 switch (PyUnicode_KIND(in)) { in escape_unicode()
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | unicode.rst | 133 :c:func:`PyUnicode_KIND` to select the right macro. Make sure 144 Return values of the :c:func:`PyUnicode_KIND` macro. 152 .. c:function:: int PyUnicode_KIND(PyObject *o) 422 :c:func:`PyUnicode_KIND`). The *buffer* must point to an array of *size* 714 :c:func:`PyUnicode_KIND`.
|
/aosp_15_r20/external/python/cpython3/Modules/cjkcodecs/ |
D | multibytecodec.c | 268 kind = PyUnicode_KIND(replchar); in multibytecodec_encerror() 506 kind = PyUnicode_KIND(buf.inobj); in multibytecodec_encode()
|
/aosp_15_r20/external/python/cpython3/Parser/ |
D | string_parser.c | 109 kind = PyUnicode_KIND(w); in decode_unicode_with_escapes()
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | bytesobject.c | 2373 unsigned int kind = PyUnicode_KIND(string); in _PyBytes_FromHex() 2385 assert(PyUnicode_KIND(string) == PyUnicode_1BYTE_KIND); in _PyBytes_FromHex()
|