Lines Matching defs:group

34 "[g:group?Group by values in \afield\a. More than one \b--group\b may be "
105 Group_t* group;
117 Group_t* group;
149 Group_t* group;
172 group = state->group;
175 if (!group)
181 if (group->variable == variable)
183 group = group->next;
197 Group_t* group;
233 for (sep = 0, group = print->group; group; group = group->next, key++)
239 if (group->string)
244 if (cxcast(cx, &arg, 0, cx->state->type_string, NiL, group->variable->format.details))
267 for (group = print->group; group->variable != variable; group = group->next, key++);
281 register Group_t* group;
284 for (group = state->group; group; group = group->next, ka++, kb++)
286 if (group->string)
316 Group_t* group;
367 if (!(group = vmnewof(vm, 0, Group_t, 1, 0)))
373 group->variable = variable;
374 group->string = cxisstring(variable->type) || cxisbuffer(variable->type);
375 if (state->group)
376 lastgroup = lastgroup->next = group;
378 lastgroup = state->group = group;
483 if (state->group)
527 register Group_t* group;
536 if (state->group)
544 for (group = state->group, key = state->key; group; group = group->next, key++)
545 if (cxcast(cx, key, group->variable, group->variable->type, data, NiL))
557 for (group = state->group, key = state->key; group; group = group->next, key++)
558 if (group->string)
622 Group_t* group;
631 pr.group = state->group;
669 for (group = state->group; group; group = group->next, key++)
672 if (group->string)
677 if (cxcast(cx, &arg, 0, cx->state->type_string, NiL, group->variable->format.details))
681 sfprintf(op, "%*s", group->width, s);
697 register Group_t* group;
716 for (group = state->group; group; group = group->next)
718 group->width = group->variable->format.print ? group->variable->format.print : group->variable->type->format.print ? group->variable->type->format.print : FW;
719 sfprintf(expr->op, " %*s", group->width, group->variable->name);