Lines Matching refs:group

376     category = matched.group(1)
1633 new_namespace = _NamespaceInfo(namespace_decl_match.group(1), linenum)
1636 line = namespace_decl_match.group(2)
1669 class_decl_match.group(4), class_decl_match.group(2),
1671 line = class_decl_match.group(5)
1682 self.stack[-1].access = access_match.group(1)
1691 token = matched.group(1)
1718 line = matched.group(2)
1850 args.group(1) != 'void' and
1852 args.group(1).strip())):
1878 fncall = match.group(1) # look inside the parens for function calls
1974 function_name = match_result.group(1).split()[-1]
1989 function = Search(r'((\w|:)*)\(', line).group(1)
1993 function += parameter_regexp.group(1)
2024 leading_whitespace = match.group(1)
2029 username = match.group(2)
2035 middle_whitespace = match.group(3)
2062 '%s must be in the private: section' % matched.group(1))
2098 operator = match.group(1)
2099 line = match.group(2)
2160 operator = match.group(2)
2161 line = match.group(1)
2291 'Do not leave a blank line after "%s:"' % matched.group(1))
2350 'Missing spaces around %s' % match.group(1))
2354 if match and not (match.group(1).isdigit() and match.group(2).isdigit()):
2367 not FindNextMatchingAngleBracket(clean_lines, linenum, match.group(1))):
2377 match.group(1))):
2402 'Extra space for operator %s' % match.group(1))
2408 'Missing space before ( in %s' % match.group(1))
2419 if len(match.group(2)) != len(match.group(4)):
2420 if not (match.group(3) == ';' and
2421 len(match.group(2)) == 1 + len(match.group(4)) or
2422 not match.group(2) and Search(r'\bfor\s*\(.*; \)', line)):
2424 'Mismatching spaces inside () in %s' % match.group(1))
2425 if not len(match.group(2)) in [0, 1]:
2428 match.group(1))
2541 '"%s:" should be preceded by a blank line' % matched.group(1))
2767 _ALT_TOKEN_REPLACEMENT[match.group(1)], match.group(1)))
2906 # _RE_FIRST_COMPONENT.match('foo').group(0) == 'foo'
2907 # _RE_FIRST_COMPONENT.match('foo.cc').group(0) == 'foo'
2908 # _RE_FIRST_COMPONENT.match('foo-bar_baz.cc').group(0) == 'foo'
2909 # _RE_FIRST_COMPONENT.match('foo_bar-baz.cc').group(0) == 'foo'
3010 target_first_component.group(0) ==
3011 include_first_component.group(0)):
3046 include = match.group(2)
3047 is_system = (match.group(1) == '<')
3079 include = match.group(2)
3220 if (match.group(1) is None and # If new operator, then this isn't a cast
3235 match.group(2))
3273 match.group(3)):
3277 (match.group(1), match.group(2)))
3308 'Use int16/int64/etc, rather than the C type %s' % match.group(1))
3312 if match and match.group(2) != '0':
3316 'to snprintf.' % (match.group(1), match.group(2)))
3325 'Almost always, snprintf is better than %s' % match.group(1))
3357 if match and match.group(1) != '__VA_ARGS__':
3359 line, re.I).group(1)
3362 % (function_name, match.group(1)))
3366 if match and not Match(r"^''|-?[0-9]+|0x[0-9A-Fa-f]$", match.group(2)):
3369 % (match.group(1), match.group(2)))
3378 if (match and match.group(2) != 'return' and match.group(2) != 'delete' and
3379 match.group(3).find(']') == -1):
3383 tokens = re.split(r'\s|\+|\-|\*|\/|<<|>>]', match.group(3))
3433 match.group(1) + ' should be the last thing in the class')
3499 if (not function_match.group(3) or
3500 function_match.group(3) == ';' or
3510 (cast_type, match.group(1)))
3650 include = match.group(2)