Lines Matching refs:input_line
182 for line_num, input_line in enumerate(self.input_lines):
183 args, argv = check_for_command(input_line, self.parser,
185 yield InputLineInfo(input_line, line_num, args, argv)
190 input_line = line_info.line
192 if input_line.startswith(self.autogenerated_note_prefix):
197 output_lines.append(input_line)
250 def should_add_line_to_output(input_line, prefix_set, skip_global_checks = False, comment_marker = … argument
252 if not skip_global_checks and input_line.strip() == comment_marker:
255 if input_line.strip() == comment_marker + SEPARATOR:
261 m = CHECK_RE.match(input_line)
265 return not global_ir_value_re.search(input_line)