Home
last modified time | relevance | path

Searched refs:OutputFormat (Results 1 – 11 of 11) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DDependencyFile.cpp164 DependencyOutputFormat OutputFormat; member in __anonec8e93570211::DFGImpl
180 OutputFormat(Opts.OutputFormat), in DFGImpl()
402 DependencyOutputFormat OutputFormat) { in PrintFilename() argument
407 if (OutputFormat == DependencyOutputFormat::NMake) { in PrintFilename()
417 assert(OutputFormat == DependencyOutputFormat::Make); in PrintFilename()
483 PrintFilename(OS, File, OutputFormat); in OutputDependencyFile()
495 PrintFilename(OS, *I, OutputFormat); in OutputDependencyFile()
H A DCompilerInvocation.cpp1353 Opts.OutputFormat = DependencyOutputFormat::NMake; in ParseDependencyOutputArgs()
/freebsd-12.1/contrib/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp79 case CoverageViewOptions::OutputFormat::Text: in create()
81 case CoverageViewOptions::OutputFormat::HTML: in create()
83 case CoverageViewOptions::OutputFormat::Lcov: in create()
144 case CoverageViewOptions::OutputFormat::Text: in create()
147 case CoverageViewOptions::OutputFormat::HTML: in create()
150 case CoverageViewOptions::OutputFormat::Lcov: in create()
H A DCodeCoverage.cpp565 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
573 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
670 case CoverageViewOptions::OutputFormat::Text: in run()
675 case CoverageViewOptions::OutputFormat::HTML: in run()
680 case CoverageViewOptions::OutputFormat::Lcov: in run()
844 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
941 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
977 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport()
1030 case CoverageViewOptions::OutputFormat::Text: in doExport()
1034 case CoverageViewOptions::OutputFormat::HTML: in doExport()
[all …]
H A DCoverageViewOptions.h21 enum class OutputFormat { enum
38 OutputFormat Format;
/freebsd-12.1/contrib/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp50 cl::opt<OutputFormatTy> OutputFormat( variable
725 } else if (OutputFormat == sysv) { in sortAndPrintSymbolList()
808 OutputFormat != posix) { in sortAndPrintSymbolList()
818 if (OutputFormat == posix) { in sortAndPrintSymbolList()
849 } else if (OutputFormat == posix) { in sortAndPrintSymbolList()
855 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) { in sortAndPrintSymbolList()
878 } else if (OutputFormat == sysv) { in sortAndPrintSymbolList()
2048 OutputFormat = bsd; in main()
2050 OutputFormat = posix; in main()
2052 OutputFormat = darwin; in main()
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp285 ProfileFormat OutputFormat, bool OutputSparse, in mergeInstrProfile() argument
290 if (OutputFormat != PF_Binary && OutputFormat != PF_Compact_Binary && in mergeInstrProfile()
291 OutputFormat != PF_Text) in mergeInstrProfile()
362 if (OutputFormat == PF_Text) { in mergeInstrProfile()
408 ProfileFormat OutputFormat) { in mergeSampleProfile() argument
411 SampleProfileWriter::create(OutputFilename, FormatMap[OutputFormat]); in mergeSampleProfile()
558 cl::opt<ProfileFormat> OutputFormat( in merge_main() local
603 OutputFormat, OutputSparse, NumThreads); in merge_main()
606 OutputFormat); in merge_main()
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/
H A DCopyConfig.cpp274 Config.OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions()
277 Config.OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); in parseObjcopyOptions()
285 if (!Config.OutputFormat.empty() && Config.OutputFormat != "binary") in parseObjcopyOptions()
286 Config.OutputArch = getOutputFormatMachineInfo(Config.OutputFormat); in parseObjcopyOptions()
H A DCopyConfig.h47 StringRef OutputFormat; member
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Frontend/
H A DDependencyOutputOptions.h40 DependencyOutputFormat OutputFormat = DependencyOutputFormat::Make; variable
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp98 if (Config.OutputFormat == "binary") { in createWriter()