Lines Matching defs:dirname
377 def get_actual_filename(dirname: str, filename: str) -> str:
378 if not os.path.isdir(dirname):
380 name = os.path.join(dirname, filename)
384 for file in os.listdir(dirname):
386 return os.path.join(dirname, file)
480 dirname, _, check_name = check_name.partition("-")
483 os.path.join(clang_tidy_path, dirname),
489 os.path.join(clang_tidy_path, dirname),
494 check_file = filename_from_module(dirname, check_name)
505 base_file = os.path.join(clang_tidy_path, dirname, base_class + ".cpp")
711 update_checks_list(os.path.dirname(sys.argv[0]))
728 clang_tidy_path = os.path.dirname(sys.argv[0])