Lines Matching defs:groups
113 { "section-groups", 'g', NULL, 0, N_("Display the section groups"), 0 },
212 /* True if section groups should be printed. */
12071 /* Sort item groups by layout offset of the first item in the group. */
12110 /* Sort to collect the groups together. */
12116 /* Collect the unique groups and sort them. */
12117 const Ebl_Core_Item **groups[nitems];
12118 groups[0] = &sorted_items[0];
12123 groups[ngroups++] = &sorted_items[i];
12124 qsort (groups, ngroups, sizeof groups[0], &compare_core_item_groups);
12126 /* Write out all the groups. */
12132 for (const Ebl_Core_Item **item = groups[i];
12134 && ((*item)->group == groups[i][0]->group
12135 || !strcmp ((*item)->group, groups[i][0]->group)));