Searched refs:clang_tidy_path (Results 1 – 2 of 2) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/ |
D | rename_check.py | 88 def getListOfFiles(clang_tidy_path): argument 89 files = glob.glob(os.path.join(clang_tidy_path, '*')) 93 files += glob.glob(os.path.join(clang_tidy_path, '..', 'test', 95 files += glob.glob(os.path.join(clang_tidy_path, '..', 'docs', 169 def add_release_notes(clang_tidy_path, old_check_name, new_check_name): argument 170 filename = os.path.normpath(os.path.join(clang_tidy_path, 240 clang_tidy_path = os.path.dirname(__file__) 249 old_module_path = os.path.join(clang_tidy_path, old_module) 250 new_module_path = os.path.join(clang_tidy_path, new_module) 267 for filename in getListOfFiles(clang_tidy_path): [all …]
|
D | add_new_check.py | 306 def update_checks_list(clang_tidy_path): argument 307 docs_dir = os.path.join(clang_tidy_path, '../docs/clang-tidy/checks') 460 clang_tidy_path = os.path.dirname(sys.argv[0]) 461 module_path = os.path.join(clang_tidy_path, module) 479 update_checks_list(clang_tidy_path)
|