Searched refs:target_arch (Results 1 – 5 of 5) sorted by relevance
/art/tools/checker/file_format/checker/ |
D | parser.py | 49 def _preprocess_line_for_start(prefix, line, target_arch): argument 56 if target_arch is not None: 69 if target_arch in archs: 70 return line[:s] + target_arch + line[e + 1:] 76 def _process_line(line, line_no, prefix, filename, target_arch): argument 90 sline = _preprocess_line_for_start(prefix + "-START", line, target_arch) 224 def parse_checker_stream(file_name, prefix, stream, target_arch=None): argument 228 return _process_line(line, line_no, prefix, file_name, target_arch)
|
D | struct.py | 32 def test_cases_for_arch(self, target_arch): argument 33 return [t for t in self.test_cases if t.test_arch == target_arch]
|
D | test.py | 330 for target_arch in archs_list: 331 for test_arch in [a for a in archs_list if a != target_arch]: 336 self.assertEqual(len(checker_file.test_cases_for_arch(target_arch)), 0)
|
/art/tools/checker/ |
D | checker.py | 93 def run_tests(check_prefix, check_path, output_filename, target_arch, debuggable_mode, print_cfg): argument 99 target_arch) 100 match_files(checker_file, c1_file, target_arch, debuggable_mode, print_cfg)
|
/art/tools/checker/match/ |
D | file.py | 335 def match_files(checker_file, c1_file, target_arch, debuggable_mode, print_cfg): argument 337 if test_case.test_arch not in [None, target_arch]:
|