Lines Matching refs:matched
374 matched = _RE_SUPPRESSION.search(raw_line)
375 if matched:
376 category = matched.group(1)
1687 matched = Match(r'^[^{;)}]*([{;)}])(.*)$', line)
1688 if not matched:
1691 token = matched.group(1)
1718 line = matched.group(2)
2054 matched = Match((r'\s*(DISALLOW_COPY_AND_ASSIGN|'
2057 if not matched:
2062 '%s must be in the private: section' % matched.group(1))
2288 matched = Match(r'\s*(public|protected|private):', prev_line)
2289 if matched:
2291 'Do not leave a blank line after "%s:"' % matched.group(1))
2516 matched = Match(r'\s*(public|protected|private):', clean_lines.lines[linenum])
2517 if matched:
2541 '"%s:" should be preceded by a blank line' % matched.group(1))
3684 matched = _RE_PATTERN_STRING.search(line)
3685 if matched:
3688 prefix = line[:matched.start()]