Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/stringlib/
Dlocaleutil.h55 Py_UCS4 maxchar2 = PyUnicode_MAX_CHAR_VALUE(thousands_sep); in InsertThousandsGrouping_fill()
/external/python/cpython3/Objects/
Dunicodeobject.c1076 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); in resize_copy()
1455 && PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)) in _copy_characters()
1457 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); in _copy_characters()
1514 assert (PyUnicode_MAX_CHAR_VALUE(from) > PyUnicode_MAX_CHAR_VALUE(to)); in _copy_characters()
1552 const Py_UCS4 to_maxchar = PyUnicode_MAX_CHAR_VALUE(to); in _copy_characters()
2310 return PyUnicode_MAX_CHAR_VALUE(unicode); in _PyUnicode_FindMaxChar()
2393 copy = PyUnicode_New(length, PyUnicode_MAX_CHAR_VALUE(unicode)); in _PyUnicode_Copy()
2552 if (PyUnicode_MAX_CHAR_VALUE(str) > writer->maxchar) in unicode_fromformat_write_str()
4057 if (ch > PyUnicode_MAX_CHAR_VALUE(unicode)) { in PyUnicode_WriteChar()
4293 PyUnicode_MAX_CHAR_VALUE(repunicode)) == -1) in unicode_decode_call_errorhandler_writer()
[all …]
/external/python/cpython3/Python/
Dformatter_unicode.c585 *maxchar = Py_MAX(*maxchar, PyUnicode_MAX_CHAR_VALUE(locale->decimal_point)); in calc_number_widths()
811 if (PyUnicode_MAX_CHAR_VALUE(value) > maxchar) { in format_string_internal()
Dcompile.c267 maxchar = PyUnicode_MAX_CHAR_VALUE(ident); in _Py_Mangle()
268 if (PyUnicode_MAX_CHAR_VALUE(privateobj) > maxchar) in _Py_Mangle()
269 maxchar = PyUnicode_MAX_CHAR_VALUE(privateobj); in _Py_Mangle()
/external/python/cpython3/Include/
Dunicodeobject.h557 #define PyUnicode_MAX_CHAR_VALUE(op) \ macro
/external/python/cpython3/Modules/
D_json.c245 maxchar = PyUnicode_MAX_CHAR_VALUE(pystr); in escape_unicode()
D_testcapimodule.c1928 PyUnicode_MAX_CHAR_VALUE(to)))) { in unicode_copycharacters()
/external/python/cpython3/Doc/data/
Drefcounts.dat2334 PyUnicode_MAX_CHAR_VALUE::::
2335 PyUnicode_MAX_CHAR_VALUE:PyObject*:o:0:
/external/python/cpython3/Modules/_io/
Dtextio.c338 PyUnicode_MAX_CHAR_VALUE(output)); in _PyIncrementalNewlineDecoder_decode()
/external/python/cpython3/Doc/c-api/
Dunicode.rst191 .. c:function:: PyUnicode_MAX_CHAR_VALUE(PyObject *o)
/external/python/cpython3/Doc/whatsnew/
D3.3.rst2201 * :c:macro:`PyUnicode_MAX_CHAR_VALUE`