Home | History | Annotate | Download | only in valgrind

Lines Matching full:line

17 # TODO(groby) - support multi-line search from the command line. Useful when
108 return any(tester(line) for line in log_lines)
150 for line in html:
151 if 'a href="builders/' in line:
152 if 'td class="box"' in line:
153 last_builder = box_matcher.match(line).group(1)
156 result = build_matcher.match(line)
172 def __call__(self, line):
173 """ Test a single line against multi-line change.
175 If it matches the currently active line, advance one line.
176 If the current line is the last line, report a match.
178 if self._tracked_lines[self._current] in line: