Lines Matching refs:group
376 category = matched.group(1)
1640 new_namespace = _NamespaceInfo(namespace_decl_match.group(1), linenum)
1643 line = namespace_decl_match.group(2)
1676 class_decl_match.group(4), class_decl_match.group(2),
1678 line = class_decl_match.group(5)
1689 self.stack[-1].access = access_match.group(1)
1698 token = matched.group(1)
1725 line = matched.group(2)
1857 args.group(1) != 'void' and
1859 args.group(1).strip())):
1885 fncall = match.group(1) # look inside the parens for function calls
1984 function_name = match_result.group(1).split()[-1]
1999 function = Search(r'((\w|:)*)\(', line).group(1)
2003 function += parameter_regexp.group(1)
2034 leading_whitespace = match.group(1)
2039 username = match.group(2)
2045 middle_whitespace = match.group(3)
2072 '%s must be in the private: section' % matched.group(1))
2108 operator = match.group(1)
2109 line = match.group(2)
2170 operator = match.group(2)
2171 line = match.group(1)
2301 'Do not leave a blank line after "%s:"' % matched.group(1))
2360 'Missing spaces around %s' % match.group(1))
2364 if match and not (match.group(1).isdigit() and match.group(2).isdigit()):
2377 not FindNextMatchingAngleBracket(clean_lines, linenum, match.group(1))):
2387 match.group(1))):
2412 'Extra space for operator %s' % match.group(1))
2418 'Missing space before ( in %s' % match.group(1))
2429 if len(match.group(2)) != len(match.group(4)):
2430 if not (match.group(3) == ';' and
2431 len(match.group(2)) == 1 + len(match.group(4)) or
2432 not match.group(2) and Search(r'\bfor\s*\(.*; \)', line)):
2434 'Mismatching spaces inside () in %s' % match.group(1))
2435 if not len(match.group(2)) in [0, 1]:
2438 match.group(1))
2551 '"%s:" should be preceded by a blank line' % matched.group(1))
2777 _ALT_TOKEN_REPLACEMENT[match.group(1)], match.group(1)))
3020 target_first_component.group(0) ==
3021 include_first_component.group(0)):
3056 include = match.group(2)
3057 is_system = (match.group(1) == '<')
3089 include = match.group(2)
3230 if (match.group(1) is None and # If new operator, then this isn't a cast
3245 match.group(2))
3283 match.group(3)):
3287 (match.group(1), match.group(2)))
3318 'Use int16/int64/etc, rather than the C type %s' % match.group(1))
3322 if match and match.group(2) != '0':
3326 'to snprintf.' % (match.group(1), match.group(2)))
3335 'Almost always, snprintf is better than %s' % match.group(1))
3367 if match and match.group(1) != '__VA_ARGS__':
3369 line, re.I).group(1)
3372 % (function_name, match.group(1)))
3376 if match and not Match(r"^''|-?[0-9]+|0x[0-9A-Fa-f]$", match.group(2)):
3379 % (match.group(1), match.group(2)))
3388 if (match and match.group(2) != 'return' and match.group(2) != 'delete' and
3389 match.group(3).find(']') == -1):
3393 tokens = re.split(r'\s|\+|\-|\*|\/|<<|>>]', match.group(3))
3443 match.group(1) + ' should be the last thing in the class')
3509 if (not function_match.group(3) or
3510 function_match.group(3) == ';' or
3520 (cast_type, match.group(1)))
3660 include = match.group(2)