Lines Matching defs:module_path

25 def adapt_cmake(module_path: str, check_name_camel: str) -> bool:
26 filename = os.path.join(module_path, "CMakeLists.txt")
60 module_path: str,
82 filename = os.path.join(module_path, check_name_camel) + ".h"
143 module_path: str, module: str, namespace: str, check_name_camel: str
145 filename = os.path.join(module_path, check_name_camel) + ".cpp"
192 def get_module_filename(module_path: str, module: str) -> str:
196 os.listdir(module_path),
199 return os.path.join(module_path, modulecpp)
204 module_path: str, module: str, check_name: str, check_name_camel: str
206 filename = get_module_filename(module_path, module)
271 module_path: str, module: str, check_name: str, description: str
280 os.path.join(module_path, "../../docs/ReleaseNotes.rst")
335 module_path: str,
345 module_path,
411 module_path = os.path.join(clang_tidy_path, module_name)
412 if not os.path.isdir(module_path):
414 module_file = get_module_filename(module_path, module_name)
615 def write_docs(module_path: str, module: str, check_name: str) -> None:
619 module_path, "../../docs/clang-tidy/checks/", module, check_name + ".rst"
729 module_path = os.path.join(clang_tidy_path, module)
731 if not adapt_cmake(module_path, check_name_camel):
776 module_path,
784 write_implementation(module_path, module, namespace, check_name_camel)
785 adapt_module(module_path, module, check_name, check_name_camel)
786 add_release_notes(module_path, module, check_name, description)
788 write_test(module_path, module, check_name, test_extension, args.standard)
789 write_docs(module_path, module, check_name)