Home | History | Annotate | Download | only in webkit

Lines Matching refs:lines

72     # Accept several lines of 'Files:'.
103 """Ignore empty lines, valgrind output and Android output."""
126 def ActIterator(lines):
127 for line in lines:
132 """Iterates over blocks of actual output lines."""
133 lines = output.stdout.splitlines()
136 for index, line in enumerate(lines):
139 # Iterate over all lines before a separator except the first.
143 yield ActIterator(lines[start_index:index])
144 # The next block of ouput lines starts after the separator.
148 yield ActIterator(lines)