HomeSort by relevance Sort by last modified time
    Searched refs:func_line (Results 1 - 4 of 4) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/utils/UpdateTestChecks/
common.py 217 for func_line in func_body[1:]:
218 output_lines.append('%s %s-NEXT: %s' % (comment_marker, checkprefix, func_line))
238 for func_line in func_body:
239 if func_line.strip() == '':
243 func_line = SCRUB_IR_COMMENT_RE.sub(r'', func_line)
248 comment_marker, checkprefix, func_line))
251 comment_marker, checkprefix, func_line))
  /external/llvm/utils/
update_test_checks.py 233 for func_line in func_body:
234 if func_line.strip() == '':
239 func_line = SCRUB_IR_COMMENT_RE.sub(r'', func_line)
243 output_lines.append('; %s: %s' % (checkprefix, func_line))
245 output_lines.append('; %s-NEXT: %s' % (checkprefix, func_line))
update_llc_test_checks.py 115 for func_line in func_body[1:]:
116 output_lines.append('; %s-NEXT: %s' % (checkprefix, func_line))
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/
update_mir_test_checks.py 236 for func_line in func_body:
237 if not func_line.strip():
239 m = VREG_DEF_RE.match(func_line)
244 func_line = func_line.replace(
247 func_line = re.sub(r'{}\b'.format(number), '[[{}]]'.format(name),
248 func_line)
249 check_line = '{}: {}'.format(check, func_line[indent:]).rstrip()

Completed in 778 milliseconds