Lines Matching refs:full_args
127 lambda full_args: action(sub_arg[len(name):], full_args))
132 def run_dsym_util(dsym_path_prefix, full_args): argument
147 linker_out = _find_linker_output(full_args)
157 def run_save_unstripped(unstripped_path_prefix, full_args): argument
172 linker_out = _find_linker_output(full_args)
180 def run_strip(strip_args_string, full_args): argument
193 strip_command.append(_find_linker_output(full_args))
198 def _find_linker_output(full_args): argument
208 output_flag_index = full_args.index('-o')
210 output_flag_index = full_args.index('-output')
211 return full_args[output_flag_index + 1]