Home | History | Annotate | Download | only in heapcheck

Lines Matching full:line

21     for line, line_num in zip(f.NewContents(),
23 line = line.lstrip()
24 if line.startswith('#') or not line:
28 if 'insert_a_suppression_name_here' in line:
31 if suppressions.has_key(line):
32 errors.append('suppression with name "%s" at %s line %s has already '
33 'been defined at line %s' % (line, f.LocalPath(),
35 suppressions[line][1]))
37 suppressions[line] = (f, line_num)
42 if not line == 'Heapcheck:Leak':
43 errors.append('"%s" should be "Heapcheck:Leak" in %s line %s' %
44 (line, f.LocalPath(), line_num))
46 if line == '{':
49 if (line.startswith('fun:') or line.startswith('obj:') or
50 line == 'Heapcheck:Leak' or line == '}' or
51 line == '...'):
53 errors.append('"%s" is probably wrong: %s line %s' % (line, f.LocalPath(),