Searched refs:file_path (Results 1 – 3 of 3) sorted by relevance
| /scripts/ |
| D | checktransupdate.py | 33 def get_origin_path(file_path): argument 35 paths = file_path.split("/") 42 def get_latest_commit_from(file_path, commit): argument 96 def check_per_file(file_path): argument 98 opath = get_origin_path(file_path) 105 t_from_head = get_latest_commit_from(file_path, "HEAD") 108 logging.error("Cannot find the latest commit for %s", file_path) 114 logging.error("Error: Cannot find the latest origin commit for %s", file_path) 118 logging.debug("No update needed for %s", file_path) 120 logging.info(file_path)
|
| D | macro_checker.py | 71 def file_check_macro(file_path, report): argument 75 if not file_path.endswith(".c") and not file_path.endswith(".h"): 78 with open(file_path, "r") as f: 100 if file_path.endswith(".c") and cond_compile != 0: 103 if file_path.endswith(".h") and cond_compile != 1:
|
| /scripts/clang-tools/ |
| D | gen_compile_commands.py | 152 def process_line(root_directory, command_prefix, file_path): argument 176 abs_path = os.path.realpath(os.path.join(root_directory, file_path)) 182 'command': prefix + file_path,
|