Lines Matching refs:input_path
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)
210 if os.path.isdir(input_path):
211 ide_path = get_scripts_from_dir_path(input_path, ide_file_name)