Home | History | Annotate | Download | only in clang

Lines Matching refs:queue

30 import Queue
56 def run_find_all_symbols(args, tmpdir, build_path, queue):
57 """Takes filenames out of queue and runs find-all-symbols on them."""
59 name = queue.get()
63 queue.task_done()
99 queue = Queue.Queue(max_task)
102 args=(args, tmpdir, build_path, queue))
106 # Fill the queue with files.
108 queue.put(name)
111 queue.join()