Lines Matching refs:fillchar
2937 Py_UCS4 fillchar;
2939 fillchar = zeropad?'0':' ';
2940 if (PyUnicode_Fill(writer->buffer, writer->pos, fill, fillchar) == -1)
10969 fillchar: Py_UCS4 = ' '
10978 unicode_center_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar)
10992 return pad(self, left, marg - left, fillchar);
12461 fillchar: Py_UCS4 = ' '
12470 unicode_ljust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar)
12479 return pad(self, 0, width - PyUnicode_GET_LENGTH(self), fillchar);
13125 fillchar: Py_UCS4 = ' '
13134 unicode_rjust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar)
13143 return pad(self, width - PyUnicode_GET_LENGTH(self), 0, fillchar);