Home | History | Annotate | Download | only in stringlib

Lines Matching full:grouping

10     const char *grouping;
12 Py_ssize_t i; /* Where we're currently pointing in grouping. */
16 STRINGLIB(GroupGenerator_init)(STRINGLIB(GroupGenerator) *self, const char *grouping)
18 self->grouping = grouping;
23 /* Returns the next grouping, or 0 to signify end. */
28 grouping string contains just CHAR_MAX, for example, then just
31 switch (self->grouping[self->i]) {
38 char ch = self->grouping[self->i];
79 * to put the grouping chars.
82 * @grouping: see definition in localeconv().
90 * Inserts thousand grouping characters (as defined by grouping and
109 const char *grouping,
125 /* A generator that returns all of the grouping widths, until it
128 STRINGLIB(GroupGenerator_init)(&groupgen, grouping);