Home
last modified time | relevance | path

Searched refs:input_line (Results 1 – 24 of 24) sorted by relevance

/openbsd-src/gnu/llvm/llvm/utils/
H A Dupdate_mir_test_checks.py317 def should_add_line_to_output(input_line, prefix_set): argument
319 m = common.CHECK_RE.match(input_line)
360 for input_line in input_lines:
361 if input_line == autogenerated_note:
365 m = IR_FUNC_NAME_RE.match(input_line)
369 if input_line.rstrip('| \r\n') == '---':
371 output_lines.append(input_line)
373 m = MIR_FUNC_NAME_RE.match(input_line)
377 if input_line.strip() == '...':
380 if should_add_line_to_output(input_line, prefix_set):
[all …]
H A Dupdate_analyze_test_checks.py138 input_line = input_info.line
141 if input_line == '':
143 if input_line.lstrip().startswith(';'):
144 m = common.CHECK_RE.match(input_line)
146 output_lines.append(input_line)
161 if common.should_add_line_to_output(input_line, prefix_set):
164 input_line = common.SCRUB_LEADING_WHITESPACE_RE.sub(r' ', input_line)
165 output_lines.append(input_line)
168 if input_line.strip() == '}':
173 output_lines.append(input_line)
[all …]
H A Dupdate_test_checks.py189 input_line = input_line_info.line
192 if input_line == '':
194 if input_line.lstrip().startswith(';'):
195 m = common.CHECK_RE.match(input_line)
197 output_lines.append(input_line)
214 m = common.IR_FUNCTION_RE.match(input_line)
224 if common.should_add_line_to_output(input_line, prefix_set, not is_in_function):
227 input_line = common.SCRUB_LEADING_WHITESPACE_RE.sub(r' ', input_line)
228 output_lines.append(input_line)
229 if input_line.strip() == '}':
[all …]
H A Dupdate_llc_test_checks.py180 input_line = input_info.line
183 if input_line == '':
185 if input_line.lstrip().startswith(';'):
186 m = common.CHECK_RE.match(input_line)
188 output_lines.append(input_line)
199 if common.should_add_line_to_output(input_line, prefix_set):
201 output_lines.append(input_line)
204 if input_line.strip() == '}':
209 output_lines.append(input_line)
211 m = common.IR_FUNCTION_RE.match(input_line)
H A Dupdate_mca_test_checks.py441 for input_line in input_lines:
442 if input_line.startswith(ADVERT_PREFIX):
445 if input_line.startswith(COMMENT_CHAR):
446 m = common.CHECK_RE.match(input_line)
452 if '{}-NOT:'.format(prefix) in input_line:
456 output_lines.append(input_line)
459 if common.should_add_line_to_output(input_line, prefix_set):
462 input_line = common.SCRUB_LEADING_WHITESPACE_RE.sub(r' ', input_line)
465 if input_line or output_lines[-1]:
466 output_lines.append(input_line)
/openbsd-src/gnu/usr.bin/texinfo/info/
H A Decho-area.c47 static char input_line[1 + EA_MAX_INPUT]; variable
53 (char *)NULL, (char *)NULL, (char *)NULL, input_line,
167 strcpy (input_line, prompt); in initialize_input_line()
169 input_line[0] = '\0'; in initialize_input_line()
192 strncpy (return_value, &input_line[input_line_beg], line_len); in echo_area_after_read()
254 for (i = input_line_end; (unsigned int) i < sizeof (input_line); i++) in echo_area_initialize_node()
255 input_line[i] = ' '; in echo_area_initialize_node()
257 input_line[i - 1] = '\n'; in echo_area_initialize_node()
259 input_line[input_line_end] = '\n'; in echo_area_initialize_node()
272 input_line[input_line_end] = '\n'; in echo_area_prep_read()
[all …]
/openbsd-src/gnu/llvm/llvm/utils/vim/
H A Dvimrc148 for l:input_line in l:input_lines
150 if l:input_line[:11] == 'COMPLETION: '
151 let l:value = l:input_line[12:]
190 \ "info": l:input_line,
201 elseif l:input_line[:9] == "OVERLOAD: "
204 let l:value = l:input_line[10:]
208 \ "info": l:input_line,
/openbsd-src/gnu/llvm/llvm/utils/UpdateTestChecks/
H A Dcommon.py182 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)
252 def should_add_line_to_output(input_line, prefix_set, skip_global_checks = False, comment_marker = … argument
254 if not skip_global_checks and input_line.strip() == comment_marker:
257 if input_line.strip() == comment_marker + SEPARATOR:
263 m = CHECK_RE.match(input_line)
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dinput.h92 #define input_line LOCATION_LINE(input_location) macro
H A Dc-lex.c208 input_line = SOURCE_LINE (map, loc); in cb_line_change()
233 input_line = included_at; in fe_file_change()
269 input_line = new_map->to_line; in fe_file_change()
H A Dtoplev.c975 input_line = line; in push_srcloc()
1902 input_line = 0; in lang_dependent_init()
H A Dc-common.c824 input_line = 0; in fname_decl()
/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DOptions.cpp917 std::string &input_line) { in ParseAlias() argument
1034 if (!input_line.empty()) { in ParseAlias()
1036 size_t pos = input_line.find(std::string(tmp_arg)); in ParseAlias()
1038 input_line.erase(pos, tmp_arg.size()); in ParseAlias()
1045 if (input_line.size() > 0) { in ParseAlias()
1046 size_t pos = input_line.find(option_to_insert); in ParseAlias()
1048 input_line.erase(pos, option_to_insert.size()); in ParseAlias()
/openbsd-src/gnu/gcc/gcc/treelang/
H A Dlex.l251 input_line = ++lineno;
H A Dtree1.c198 input_line = 1; in treelang_parse_file()
H A DChangeLog759 * tree1.c (treelang_init): Rename lineno to input_line.
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DOptions.h131 std::string &input_line);
/openbsd-src/gnu/gcc/gcc/objc/
H A DChangeLog606 (objc_init): Only set input_line to 0 #ifndef USE_MAPPED_LOCATION.
608 instead of diddling input_line. Fix spelling.
H A Dobjc-act.c491 input_line = 0; in objc_init()
/openbsd-src/gnu/gcc/gcc/cp/
H A Dname-lookup.c1255 cxx_scope_debug (scope, input_line, "push"); in push_binding_level()
1342 cxx_scope_debug (scope, input_line, "leave"); in leave_scope()
1402 cxx_scope_debug (b, input_line, "resume"); in resume_scope()
H A Ddecl2.c3057 input_line -= 1; in cp_finish_file()
H A DChangeLog-20044186 * name-lookup.c: Use input_line macro.
4196 Don't set TREE_COMPLEXITY from input_line.
H A Dpt.c7553 && (last_loc.line != input_line in tsubst()
H A DChangeLog-20034501 * class.c (finish_struct): Rename lineno to input_line.