Lines Matching full:line
10 # optional one-line comments anywhere in the suppressions file.
24 If ran from the command line, suppressions.py does a self-test of the
56 for line in stack:
57 if line == ELLIPSIS:
62 for char in line:
91 def __init__(self, filename, line, report=''):
92 Exception.__init__(self, filename, line, report)
94 self._line = line
98 return 'Error reading suppressions from "%s" (line %d): %s.' % (
111 for line in input_file:
113 line = line.strip()
114 if line.startswith('#'):
116 elif line.startswith('{'):
118 elif line.startswith('}'):
124 cur_descr = line
127 cur_type = line
129 elif line.startswith('fun:'):
130 line = line[4:]
131 cur_stack.append(line.strip())
132 elif line.startswith(ELLIPSIS):