Lines Matching refs:group
390 if macro.group("macro").startswith(exclusions):
398 macro.group("macro")))
436 name.group(0)))
492 enum_const.group("enum_const")))
531 lambda s: '""' if s.group('string') else ' ',
617 # Find the group that matched, and append it
618 for group in identifier.groups():
619 if not group:
627 group))
762 if (symbol and not symbol.group("symbol").startswith(exclusions)):
763 symbols.append(symbol.group("symbol"))
796 for group, check_pattern in pattern_checks:
797 problems += self.check_match_pattern(group, check_pattern)
840 Perform a check that all items of a group conform to a regex pattern.