Lines Matching defs:width
48 "ljust($self, width, fillchar=b\' \', /)\n"
51 "Return a left-justified string of length width.\n"
59 stringlib_ljust_impl(PyObject *self, Py_ssize_t width, char fillchar);
65 Py_ssize_t width;
81 width = ival;
97 return_value = stringlib_ljust_impl(self, width, fillchar);
104 "rjust($self, width, fillchar=b\' \', /)\n"
107 "Return a right-justified string of length width.\n"
115 stringlib_rjust_impl(PyObject *self, Py_ssize_t width, char fillchar);
121 Py_ssize_t width;
137 width = ival;
153 return_value = stringlib_rjust_impl(self, width, fillchar);
160 "center($self, width, fillchar=b\' \', /)\n"
163 "Return a centered string of length width.\n"
171 stringlib_center_impl(PyObject *self, Py_ssize_t width, char fillchar);
177 Py_ssize_t width;
193 width = ival;
209 return_value = stringlib_center_impl(self, width, fillchar);
216 "zfill($self, width, /)\n"
219 "Pad a numeric string with zeros on the left, to fill a field of the given width.\n"
227 stringlib_zfill_impl(PyObject *self, Py_ssize_t width);
233 Py_ssize_t width;
245 width = ival;
247 return_value = stringlib_zfill_impl(self, width);