Lines Matching defs:build_path
94 build_path: str,
137 start.append(f"-p={build_path}")
180 def find_binary(arg: str, name: str, build_path: str) -> str:
190 built_path = os.path.join(build_path, "bin", name)
241 build_path: str,
251 build_path,
413 "-p", dest="build_path", help="Path used to read a compile command database."
453 if args.build_path is not None:
454 build_path = args.build_path
457 build_path = find_compilation_database(db_path)
459 clang_tidy_binary = find_binary(args.clang_tidy_binary, "clang-tidy", build_path)
463 args.clang_apply_replacements_binary, "clang-apply-replacements", build_path
497 build_path,
523 with open(os.path.join(build_path, db_path)) as f:
568 build_path,