• Home
  • Raw
  • Download

Lines Matching refs:PyUnicode_MAX_CHAR_VALUE

1197         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()
5819 Py_UCS4 maxch = PyUnicode_MAX_CHAR_VALUE(writer.buffer); in PyUnicode_DecodeUTF32Stateful()
10442 maxchar = PyUnicode_MAX_CHAR_VALUE(separator); in _PyUnicode_JoinArray()
10474 item_maxchar = PyUnicode_MAX_CHAR_VALUE(item); in _PyUnicode_JoinArray()
10569 assert(fill_char <= PyUnicode_MAX_CHAR_VALUE(unicode)); in _PyUnicode_FastFill()
10594 if (fill_char > PyUnicode_MAX_CHAR_VALUE(unicode)) { in PyUnicode_Fill()
10634 maxchar = PyUnicode_MAX_CHAR_VALUE(self); in pad()
10960 maxchar = PyUnicode_MAX_CHAR_VALUE(self); in replace()
10961 maxchar_str1 = PyUnicode_MAX_CHAR_VALUE(str1); in replace()
10965 maxchar_str2 = PyUnicode_MAX_CHAR_VALUE(str2); in replace()
11776 maxchar = PyUnicode_MAX_CHAR_VALUE(left); in PyUnicode_Concat()
11777 maxchar2 = PyUnicode_MAX_CHAR_VALUE(right); in PyUnicode_Concat()
11853 maxchar = PyUnicode_MAX_CHAR_VALUE(left); in PyUnicode_Append()
11854 maxchar2 = PyUnicode_MAX_CHAR_VALUE(right); in PyUnicode_Append()
12048 u = PyUnicode_New(j, PyUnicode_MAX_CHAR_VALUE(self)); in unicode_expandtabs_impl()
13075 u = PyUnicode_New(nchars, PyUnicode_MAX_CHAR_VALUE(str)); in unicode_repeat()
14057 writer->maxchar = PyUnicode_MAX_CHAR_VALUE(writer->buffer); in _PyUnicodeWriter_Update()
14227 maxchar = PyUnicode_MAX_CHAR_VALUE(str); in _PyUnicodeWriter_WriteStr()
14267 if (PyUnicode_MAX_CHAR_VALUE(str) > writer->maxchar) in _PyUnicodeWriter_WriteSubstring()
15387 if (PyUnicode_MAX_CHAR_VALUE(str) > maxchar) { in unicode_format_arg_output()
15674 if (PyUnicode_MAX_CHAR_VALUE(unicode) < 128) in unicode_subtype_new()