Lines Matching +full:runs +full:- +full:on
3 # =- run-find-all-symbols.py - Parallel find-all-symbols runner -*- python -*-=#
7 # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
9 # ===------------------------------------------------------------------------===#
12 Parallel find-all-symbols runner
15 Runs find-all-symbols over all files in a compilation database.
18 - Run find-all-symbols on all files in the current working directory.
19 run-find-all-symbols.py <source-file>
50 invocation = [args.binary, "-merge-dir=" + directory, args.saving_path]
56 """Takes filenames out of queue and runs find-all-symbols on them."""
59 invocation = [args.binary, name, "-output-dir=" + tmpdir, "-p=" + build_path]
67 description="Runs find-all-symbols over all" "files in a compilation database."
70 "-binary",
72 default="./bin/find-all-symbols",
73 help="path to find-all-symbols binary",
76 "-j", type=int, default=0, help="number of instances to be run in parallel."
79 "-p", dest="build_path", help="path used to read a compilation database."
82 "-saving-path", default="./find_all_symbols_db.yaml", help="result saving path"
99 # Filter out .rc files on Windows. CMake includes them for some reason.
107 # Spin up a bunch of tidy-launching threads.
127 # bonkers with ctrl-c and we start forking merrily.
128 print("\nCtrl-C detected, goodbye.")