Searched refs:prefix_set (Results 1 – 8 of 8) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/ |
| H A D | update_mir_test_checks.py | 274 def should_add_line_to_output(input_line, prefix_set): argument 277 if m and m.group(1) in prefix_set: 323 prefix_set = set([prefix for run in run_list for prefix in run.prefixes]) 324 log('Rewriting FileCheck prefixes: {}'.format(prefix_set), args.verbose) 327 prefix_set.update(common_prefixes) 358 if should_add_line_to_output(input_line, prefix_set): 361 if should_add_line_to_output(input_line, prefix_set): 381 if should_add_line_to_output(input_line, prefix_set): 387 if should_add_line_to_output(input_line, prefix_set): 397 if should_add_line_to_output(input_line, prefix_set): [all …]
|
| H A D | update_llc_test_checks.py | 138 prefix_set = set([prefix for p in run_list for prefix in p[0]]) 139 common.debug('Rewriting FileCheck prefixes:', str(prefix_set)) 155 common.dump_input_lines(output_lines, ti, prefix_set, ';') 173 if not m or m.group(1) not in prefix_set: 182 if common.should_add_line_to_output(input_line, prefix_set):
|
| H A D | update_test_checks.py | 132 prefix_set = set([prefix for prefixes, _, _ in prefix_list for prefix in prefixes]) 133 common.debug('Rewriting FileCheck prefixes:', str(prefix_set)) 149 common.dump_input_lines(output_lines, ti, prefix_set, ';') 173 if not m or m.group(1) not in prefix_set: 189 if common.should_add_line_to_output(input_line, prefix_set, not is_in_function):
|
| H A D | update_analyze_test_checks.py | 134 prefix_set = set([prefix for prefixes, _ in prefix_list for prefix in prefixes]) 135 common.debug('Rewriting FileCheck prefixes:', str(prefix_set), file=sys.stderr) 145 if not m or m.group(1) not in prefix_set: 154 if common.should_add_line_to_output(input_line, prefix_set):
|
| H A D | update_mca_test_checks.py | 436 prefix_set = set([prefix for prefixes, _ in prefix_list 455 if prefix not in prefix_set or prefix in not_prefix_set: 459 if common.should_add_line_to_output(input_line, prefix_set): 510 unused_prefixes = (prefix_set - not_prefix_set) - used_prefixes
|
| H A D | update_cc_test_checks.py | 301 prefix_set = set([prefix for p in filecheck_run_list for prefix in p[0]]) 320 common.dump_input_lines(output_lines, ti, prefix_set, '//') 347 if m and m.group(1) in prefix_set:
|
| /netbsd-src/usr.sbin/faithd/ |
| H A D | prefix.c | 50 static int prefix_set(const char *, struct prefix *, int); 61 prefix_set(const char *s, struct prefix *prefix, int slash) in prefix_set() function 245 if (prefix_set(token[0], &conf->match, 1) < 0) in config_load1() 247 if (prefix_set(token[2], &conf->dest, 1) < 0) in config_load1() 250 if (prefix_set(token[3], &conf->src, 0) < 0) in config_load1()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/utils/UpdateTestChecks/ |
| H A D | common.py | 124 def should_add_line_to_output(input_line, prefix_set, skip_global_checks = False): argument 136 if m and m.group(1) in prefix_set: 898 def dump_input_lines(output_lines, test_info, prefix_set, comment_string): argument 908 if m and m.group(1) in prefix_set:
|