Lines Matching refs:matched
378 matched = _RE_SUPPRESSION.search(raw_line)
379 if matched:
380 category = matched.group(1)
1720 matched = Match(r'^[^{;)}]*([{;)}])(.*)$', line)
1721 if not matched:
1724 token = matched.group(1)
1751 line = matched.group(2)
2090 matched = Match((r'\s*(DISALLOW_COPY_AND_ASSIGN|'
2093 if not matched:
2098 '%s must be in the private: section' % matched.group(1))
2324 matched = Match(r'\s*(public|protected|private):', prev_line)
2325 if matched:
2327 'Do not leave a blank line after "%s:"' % matched.group(1))
2552 matched = Match(r'\s*(public|protected|private):', clean_lines.lines[linenum])
2553 if matched:
2577 '"%s:" should be preceded by a blank line' % matched.group(1))
3727 matched = _RE_PATTERN_STRING.search(line)
3728 if matched:
3731 prefix = line[:matched.start()]