Searched refs:input_path (Results 1 – 2 of 2) sorted by relevance
/tools/asuite/aidegen/lib/ |
D | ide_common_util.py | 114 def _get_scripts_from_file_path(input_path, ide_file_name): argument 124 if os.path.basename(input_path).startswith(ide_file_name): 125 files_found = glob.glob(input_path) 131 def get_scripts_from_dir_path(input_path, ide_file_name): argument 141 logging.debug('Call get_scripts_from_dir_path with %s, and %s', input_path, 143 files_found = list(_walk_tree_find_ide_exe_file(input_path, 190 def get_script_from_input_path(input_path, ide_file_name): argument 205 if not input_path: 208 if os.path.isfile(input_path): 209 ide_path = _get_scripts_from_file_path(input_path, ide_file_name) [all …]
|
/tools/treble/split/ |
D | manifest_split.py | 391 def scan_repo_projects(repo_projects, input_path): argument 402 parts = input_path.split("/") 421 for input_path in inputs: 422 if not input_path.startswith("out/") and not input_path.startswith("/"): 424 scan_repo_projects(repo_projects, input_path), []).append(input_path)
|