Lines Matching defs:groups
93 %type <list_evsel> groups
123 start_events: groups
125 /* Take the parsed events, groups.. and place into parse_state. */
126 struct list_head *groups = $1;
129 list_splice_tail(groups, &parse_state->list);
130 free(groups);
133 groups: /* A list of groups or events. */
134 groups ',' group
136 /* Merge group into the list of events/groups. */
137 struct list_head *groups = $1;
140 list_splice_tail(group, groups);
142 $$ = groups;
145 groups ',' event
147 /* Merge event into the list of events/groups. */
148 struct list_head *groups = $1;
152 list_splice_tail(event, groups);
154 $$ = groups;