Lines Matching defs:fill
74 /* Second pass: create output string and fill it */
106 pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill)
122 memset(STRINGLIB_STR(u), fill, left);
128 fill, right);
143 Padding is done using the specified fill character.
167 Padding is done using the specified fill character.
191 Padding is done using the specified fill character.
216 Pad a numeric string with zeros on the left, to fill a field of the given width.
225 Py_ssize_t fill;
233 fill = width - STRINGLIB_LEN(self);
235 s = pad(self, fill, 0, '0');
241 if (p[fill] == '+' || p[fill] == '-') {
243 p[0] = p[fill];
244 p[fill] = '0';