Lines Matching refs:matched
374 matched = _RE_SUPPRESSION.search(raw_line)
375 if matched:
376 category = matched.group(1)
1694 matched = Match(r'^[^{;)}]*([{;)}])(.*)$', line)
1695 if not matched:
1698 token = matched.group(1)
1725 line = matched.group(2)
2064 matched = Match((r'\s*(DISALLOW_COPY_AND_ASSIGN|'
2067 if not matched:
2072 '%s must be in the private: section' % matched.group(1))
2298 matched = Match(r'\s*(public|protected|private):', prev_line)
2299 if matched:
2301 'Do not leave a blank line after "%s:"' % matched.group(1))
2526 matched = Match(r'\s*(public|protected|private):', clean_lines.lines[linenum])
2527 if matched:
2551 matched.group(1))
3694 matched = _RE_PATTERN_STRING.search(line)
3695 if matched:
3698 prefix = line[:matched.start()]