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

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-cov/
H A DCoverageViewOptions.h20 enum class OutputFormat { class in struct:llvm::CoverageViewOptions
39 OutputFormat Format;
H A DSourceCoverageView.cpp78 case CoverageViewOptions::OutputFormat::Text:
80 case CoverageViewOptions::OutputFormat::HTML:
82 case CoverageViewOptions::OutputFormat::Lcov:
143 case CoverageViewOptions::OutputFormat::Text:
146 case CoverageViewOptions::OutputFormat::HTML:
149 case CoverageViewOptions::OutputFormat::Lcov:
H A DCodeCoverage.cpp565 cl::opt<CoverageViewOptions::OutputFormat> Format(
567 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text",
569 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html",
571 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov",
573 cl::init(CoverageViewOptions::OutputFormat::Text));
670 case CoverageViewOptions::OutputFormat::Text:
675 case CoverageViewOptions::OutputFormat::HTML:
680 case CoverageViewOptions::OutputFormat::Lcov:
844 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) {
941 (ViewOpts.Format == CoverageViewOptions::OutputFormat
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp40 OutputFormat("format", cl::desc("Specify output format"),
209 /// This is when used when @c OutputFormat is darwin and produces the same
284 /// This is when used when @c OutputFormat is berkeley with a Mach-O file and
359 /// The format used is determined by @c OutputFormat and @c Radix.
366 // If OutputFormat is darwin and we have a MachOObjectFile print as darwin's
367 // size(1) -m output, else if OutputFormat is darwin and not a Mach-O object
368 // let it fall through to OutputFormat berkeley.
370 if (OutputFormat == darwin && MachO)
372 // If we have a MachOObjectFile and the OutputFormat is berkeley print as
374 else if (MachO && OutputFormat
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DDependencyFile.cpp187 OutputFormat(Opts.OutputFormat), InputFileIndex(0) {
277 DependencyOutputFormat OutputFormat) {
282 if (OutputFormat == DependencyOutputFormat::NMake) {
292 assert(OutputFormat == DependencyOutputFormat::Make);
362 PrintFilename(OS, File, OutputFormat);
374 PrintFilename(OS, *I, OutputFormat);
276 PrintFilename(raw_ostream &OS, StringRef Filename, DependencyOutputFormat OutputFormat) argument
H A DASTConsumers.cpp41 OutputKind(K), OutputFormat(Format), FilterString(FilterString),
95 D->dump(Out, OutputKind == DumpFull, OutputFormat);
105 ASTDumpOutputFormat OutputFormat; member in class:__anon494::ASTPrinter
H A DCompilerInvocation.cpp1456 Opts.OutputFormat = DependencyOutputFormat::NMake;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Frontend/
H A DDependencyOutputOptions.h39 DependencyOutputFormat OutputFormat = DependencyOutputFormat::Make; member in class:clang::DependencyOutputOptions
H A DUtils.h143 DependencyOutputFormat OutputFormat; member in class:clang::DependencyFileGenerator
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp296 ProfileFormat OutputFormat, bool OutputSparse,
301 if (OutputFormat != PF_Binary && OutputFormat != PF_Compact_Binary &&
302 OutputFormat != PF_Ext_Binary && OutputFormat != PF_Text)
371 if (OutputFormat == PF_Text) {
444 ProfileFormat OutputFormat,
449 if (WriterList.size() > 0 && OutputFormat != PF_Ext_Binary)
456 if (OutputFormat != PF_Ext_Binary) {
469 ProfileFormat OutputFormat,
293 mergeInstrProfile(const WeightedFileVector &Inputs, SymbolRemapper *Remapper, StringRef OutputFilename, ProfileFormat OutputFormat, bool OutputSparse, unsigned NumThreads, FailureMode FailMode) argument
443 handleExtBinaryWriter(sampleprof::SampleProfileWriter &Writer, ProfileFormat OutputFormat, MemoryBuffer *Buffer, sampleprof::ProfileSymbolList &WriterList, bool CompressAllSections) argument
466 mergeSampleProfile(const WeightedFileVector &Inputs, SymbolRemapper *Remapper, StringRef OutputFilename, ProfileFormat OutputFormat, StringRef ProfileSymbolListFile, bool CompressAllSections, FailureMode FailMode) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-nm/
H A Dllvm-nm.cpp52 cl::opt<OutputFormatTy> OutputFormat(
59 cl::aliasopt(OutputFormat));
350 // the OutputFormat is darwin or we are printing Mach-O symbols in hex. For
732 if (OutputFormat == posix && MultipleFiles && printName) {
734 } else if (OutputFormat == bsd && MultipleFiles && printName) {
736 } else if (OutputFormat == sysv) {
753 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64;
756 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64;
759 printFormat = OutputFormat == posix ? "%" PRId64 : "%016" PRId64;
766 printFormat = OutputFormat
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DCopyConfig.cpp470 StringRef InputFormat, OutputFormat; local
473 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target);
476 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target);
491 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat)
495 if (Config.OutputFormat == FileFormat::Unspecified) {
496 if (OutputFormat.empty()) {
497 Config.OutputFormat = Config.InputFormat;
500 getOutputTargetInfoByTargetName(OutputFormat);
503 Config.OutputFormat
[all...]
H A DCopyConfig.h155 FileFormat OutputFormat = FileFormat::Unspecified; member in struct:llvm::objcopy::CopyConfig
H A Dllvm-objcopy.cpp147 switch (Config.OutputFormat) {
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp136 // Depending on the initial ELFT and OutputFormat we need a different Writer.
157 switch (Config.OutputFormat) {
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h1147 ASTDumpOutputFormat OutputFormat = ADOF_Default) const;

Completed in 266 milliseconds