Home | History | Annotate | Download | only in valgrind

Lines Matching full:line

27   for line in input_file:
28 line = line.strip()
29 line = line.replace("</span><span class=\"stdout\">", "")
30 line = line.replace("</span><span class=\"stderr\">", "")
31 line = line.replace("&lt;", "<")
32 line = line.replace("&gt;", ">")
34 if line == "}":
41 cur_supp += [" "*3 + line]
42 elif line == "{":
45 elif line.find("Suppression (error hash=#") == 0:
46 last_hash = line[25:41]
47 # The line at the end of the file is assumed to store the URL of the report.
48 return reports,line
59 # Each line ends with a newline, so the final entry of the split output
69 for line in report.splitlines():
70 index = line.find(prefix)
72 symbols.append(line[index + prefix_len:])