Home
last modified time | relevance | path

Searched refs:PyUnicode_MAX_CHAR_VALUE (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Objects/stringlib/
Dlocaleutil.h55 Py_UCS4 maxchar2 = PyUnicode_MAX_CHAR_VALUE(thousands_sep); in InsertThousandsGrouping_fill()
/third_party/python/Objects/
Dunicodeobject.c1197 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); in resize_copy()
1596 && PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)) in _copy_characters()
1598 Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); in _copy_characters()
1655 assert (PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)); in _copy_characters()
1693 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); in _copy_characters()
2557 return PyUnicode_MAX_CHAR_VALUE(unicode); in _PyUnicode_FindMaxChar()
2642 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); in _PyUnicode_Copy()
2792 if (PyUnicode_MAX_CHAR_VALUE(str) > writer->maxchar) in unicode_fromformat_write_str()
4395 if (ch > PyUnicode_MAX_CHAR_VALUE(unicode)) { in PyUnicode_WriteChar()
4654 PyUnicode_MAX_CHAR_VALUE(repunicode)) == -1) in unicode_decode_call_errorhandler_writer()
[all …]
/third_party/python/Python/
Dformatter_unicode.c588 *maxchar = Py_MAX(*maxchar, PyUnicode_MAX_CHAR_VALUE(locale->decimal_point)); in calc_number_widths()
820 if (PyUnicode_MAX_CHAR_VALUE(value) > maxchar) { in format_string_internal()
Dcompile.c362 maxchar = PyUnicode_MAX_CHAR_VALUE(ident); in _Py_Mangle()
363 if (PyUnicode_MAX_CHAR_VALUE(privateobj) > maxchar) in _Py_Mangle()
364 maxchar = PyUnicode_MAX_CHAR_VALUE(privateobj); in _Py_Mangle()
/third_party/python/Include/cpython/
Dunicodeobject.h435 #define PyUnicode_MAX_CHAR_VALUE(op) \ macro
/third_party/python/Modules/
D_json.c234 maxchar = PyUnicode_MAX_CHAR_VALUE(pystr); in escape_unicode()
D_testcapimodule.c2148 PyUnicode_MAX_CHAR_VALUE(to)))) { in unicode_copycharacters()
/third_party/python/Doc/data/
Drefcounts.dat2355 PyUnicode_MAX_CHAR_VALUE::::
2356 PyUnicode_MAX_CHAR_VALUE:PyObject*:o:0:
/third_party/python/Modules/_io/
Dtextio.c341 PyUnicode_MAX_CHAR_VALUE(output)); in _PyIncrementalNewlineDecoder_decode()
/third_party/python/Doc/c-api/
Dunicode.rst201 .. c:macro:: PyUnicode_MAX_CHAR_VALUE(o)
/third_party/python/Doc/whatsnew/
D3.3.rst2201 * :c:macro:`PyUnicode_MAX_CHAR_VALUE`