Lines Matching defs:clang_tidy_path
104 def getListOfFiles(clang_tidy_path: str) -> List[str]:
105 files = glob.glob(os.path.join(clang_tidy_path, "**"), recursive=True)
107 os.path.normpath(os.path.join(clang_tidy_path, "../docs/ReleaseNotes.rst"))
110 os.path.join(clang_tidy_path, "..", "test", "clang-tidy", "checkers", "**"),
114 os.path.join(clang_tidy_path, "..", "docs", "clang-tidy", "checks", "*.rst")
118 clang_tidy_path, "..", "docs", "clang-tidy", "checks", "*", "*.rst"
210 clang_tidy_path: str, old_check_name: str, new_check_name: str
213 os.path.join(clang_tidy_path, "../docs/ReleaseNotes.rst")
296 clang_tidy_path = os.path.dirname(__file__)
306 old_module_path = os.path.join(clang_tidy_path, old_module)
307 new_module_path = os.path.join(clang_tidy_path, new_module)
333 for filename in getListOfFiles(clang_tidy_path):
401 os.system(os.path.join(clang_tidy_path, "add_new_check.py") + " --update-docs")
402 add_release_notes(clang_tidy_path, args.old_check_name, args.new_check_name)