Searched refs:recurse_run (Results 1 – 1 of 1) sorted by relevance
/external/angle/src/tests/restricted_traces/ |
D | retrace_restricted_traces.py | 484 def recurse_run(others, exts, depth=0): function 495 return recurse_run(others, left_partition) 503 return recurse_run(others, left_partition, depth + 1) 506 return recurse_run(others, right_partition, depth + 1) 509 left_reqs = recurse_run(others + right_partition, left_partition, depth + 1) 510 right_reqs = recurse_run(others + left_reqs, right_partition, depth + 1) 513 recurse_reqs = recurse_run([], extensions, 0)
|