Lines Matching defs:width
84 "center($self, width, fillchar=\' \', /)\n"
87 "Return a centered string of length width.\n"
95 unicode_center_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
101 Py_ssize_t width;
117 width = ival;
126 return_value = unicode_center_impl(self, width, fillchar);
518 "ljust($self, width, fillchar=\' \', /)\n"
521 "Return a left-justified string of length width.\n"
529 unicode_ljust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
535 Py_ssize_t width;
551 width = ival;
560 return_value = unicode_ljust_impl(self, width, fillchar);
827 "rjust($self, width, fillchar=\' \', /)\n"
830 "Return a right-justified string of length width.\n"
838 unicode_rjust_impl(PyObject *self, Py_ssize_t width, Py_UCS4 fillchar);
844 Py_ssize_t width;
860 width = ival;
869 return_value = unicode_rjust_impl(self, width, fillchar);
1201 "zfill($self, width, /)\n"
1204 "Pad a numeric string with zeros on the left, to fill a field of the given width.\n"
1212 unicode_zfill_impl(PyObject *self, Py_ssize_t width);
1218 Py_ssize_t width;
1230 width = ival;
1232 return_value = unicode_zfill_impl(self, width);