Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp78 static OutputFormatTy OutputFormat; variable
366 if (OutputFormat == darwin && MachO) in printObjectSectionSizes()
372 else if (OutputFormat == sysv) { in printObjectSectionSizes()
568 if (OutputFormat == sysv) in printFileSectionSizes()
766 if (OutputFormat == sysv) in printFileSectionSizes()
802 if (OutputFormat == sysv) in printFileSectionSizes()
834 if (OutputFormat == sysv) in printFileSectionSizes()
839 if (OutputFormat == berkeley) { in printFileSectionSizes()
893 OutputFormat = berkeley; in main()
895 OutputFormat = darwin; in main()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DDependencyFile.cpp194 OutputFormat(Opts.OutputFormat), InputFileIndex(0) { in DependencyFileGenerator()
284 DependencyOutputFormat OutputFormat) { in PrintFilename() argument
289 if (OutputFormat == DependencyOutputFormat::NMake) { in PrintFilename()
299 assert(OutputFormat == DependencyOutputFormat::Make); in PrintFilename()
369 PrintFilename(OS, File, OutputFormat); in outputDependencyFile()
381 PrintFilename(OS, *I, OutputFormat); in outputDependencyFile()
H A DASTConsumers.cpp41 OutputKind(K), OutputFormat(Format), FilterString(FilterString), in ASTPrinter()
95 D->dump(Out, OutputKind == DumpFull, OutputFormat); in print()
119 ASTDumpOutputFormat OutputFormat; member in __anon94ad67a40111::ASTPrinter
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-cov/
H A DSourceCoverageView.cpp78 case CoverageViewOptions::OutputFormat::Text: in create()
80 case CoverageViewOptions::OutputFormat::HTML: in create()
82 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.cpp648 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
656 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
768 case CoverageViewOptions::OutputFormat::Text: in run()
773 case CoverageViewOptions::OutputFormat::HTML: in run()
778 case CoverageViewOptions::OutputFormat::Lcov: in run()
954 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
1055 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
1091 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport()
1157 case CoverageViewOptions::OutputFormat::Text: in doExport()
1161 case CoverageViewOptions::OutputFormat::HTML: in doExport()
[all …]
H A DCoverageViewOptions.h20 enum class OutputFormat { enum
44 OutputFormat Format;
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp93 static OutputFormatTy OutputFormat; variable
659 if ((OutputFormat == bsd || OutputFormat == posix || in sortAndPrintSymbolList()
663 } else if (OutputFormat == sysv) { in sortAndPrintSymbolList()
734 OutputFormat != posix) { in sortAndPrintSymbolList()
743 if (OutputFormat == posix) { in sortAndPrintSymbolList()
776 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) { in sortAndPrintSymbolList()
2159 OutputFormat = bsd; in main()
2161 OutputFormat = posix; in main()
2163 OutputFormat = sysv; in main()
2165 OutputFormat = darwin; in main()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp306 ProfileFormat OutputFormat, in writeInstrProfile() argument
315 if (OutputFormat == PF_Text) { in writeInstrProfile()
331 if (OutputFormat != PF_Binary && OutputFormat != PF_Compact_Binary && in mergeInstrProfile()
332 OutputFormat != PF_Ext_Binary && OutputFormat != PF_Text) in mergeInstrProfile()
583 writeInstrProfile(OutputFilename, OutputFormat, WC->Writer); in supplementInstrProfile()
653 ProfileFormat OutputFormat, in handleExtBinaryWriter() argument
659 if (WriterList.size() > 0 && OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter()
666 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter()
672 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter()
678 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DConfigManager.cpp708 StringRef InputFormat, OutputFormat; in parseObjcopyOptions() local
711 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions()
714 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); in parseObjcopyOptions()
743 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) in parseObjcopyOptions()
747 if (Config.OutputFormat == FileFormat::Unspecified) { in parseObjcopyOptions()
748 if (OutputFormat.empty()) { in parseObjcopyOptions()
749 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions()
752 getOutputTargetInfoByTargetName(OutputFormat); in parseObjcopyOptions()
755 Config.OutputFormat = Target->Format; in parseObjcopyOptions()
1349 Config.OutputFormat = FileFormat::Unspecified; in parseStripOptions()
H A DCommonConfig.h195 FileFormat OutputFormat = FileFormat::Unspecified; member
H A Dllvm-objcopy.cpp151 switch (Config.OutputFormat) { in executeObjcopyOnRawBinary()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/
H A DDependencyOutputOptions.h51 DependencyOutputFormat OutputFormat = DependencyOutputFormat::Make; variable
H A DUtils.h144 DependencyOutputFormat OutputFormat; variable
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp160 switch (Config.OutputFormat) { in createWriter()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1178 ASTDumpOutputFormat OutputFormat = ADOF_Default) const;
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td692 MarshallingInfoFlag<DependencyOutputOpts<"OutputFormat">, "DependencyOutputFormat::Make">,