Lines Matching refs:OutputFormat
670 StringRef InputFormat, OutputFormat; in parseObjcopyOptions() local
673 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions()
676 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); in parseObjcopyOptions()
746 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) in parseObjcopyOptions()
751 if (Config.OutputFormat == FileFormat::Unspecified) { in parseObjcopyOptions()
752 if (OutputFormat.empty()) { in parseObjcopyOptions()
753 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions()
756 getOutputTargetInfoByTargetName(OutputFormat); in parseObjcopyOptions()
759 Config.OutputFormat = Target->Format; in parseObjcopyOptions()
841 if (Config.OutputFormat != FileFormat::Binary) in parseObjcopyOptions()
858 if (Config.OutputFormat != FileFormat::Binary) in parseObjcopyOptions()
1498 Config.OutputFormat = FileFormat::Unspecified; in parseStripOptions()