Home
last modified time | relevance | path

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

/external/llvm-project/lldb/scripts/
Danalyze-project-deps.py99 def expand(path_queue, path_lengths, cycles, src_map): argument
104 while len(path_queue) > 0:
105 cur_path = path_queue.pop(0)
127 path_queue.append(cur_path + [item])
132 path_queue = [[x] for x in iter(src_map)] variable
133 path_lens = [1] * len(path_queue)
166 expand(path_queue, path_lens, cycles, src_map)