Home | History | Annotate | Download | only in stringlib

Lines Matching full:grouping

12     const char *grouping;
14 Py_ssize_t i; /* Where we're currently pointing in grouping. */
18 _GroupGenerator_init(GroupGenerator *self, const char *grouping)
20 self->grouping = grouping;
25 /* Returns the next grouping, or 0 to signify end. */
30 grouping string contains just CHAR_MAX, for example, then just
33 switch (self->grouping[self->i]) {
40 char ch = self->grouping[self->i];
89 * to put the grouping chars.
92 * @grouping: see definition in localeconv().
100 * Inserts thousand grouping characters (as defined by grouping and
118 const char *grouping,
134 /* A generator that returns all of the grouping widths, until it
137 _GroupGenerator_init(&groupgen, grouping);
194 * to put the grouping chars.
206 const char *grouping = locale_data->grouping;
210 min_width, grouping, thousands_sep);