| /llvm-project-15.0.7/llvm/unittests/Remarks/ |
| H A D | RemarksLinkingTest.cpp | 19 remarks::Format OutputFormat, in serializeAndCheck() argument 26 Error E = RL.serialize(OS, OutputFormat); in serializeAndCheck() 30 if (OutputFormat == remarks::Format::Bitstream) { in serializeAndCheck() 44 remarks::Format OutputFormat, StringRef ExpectedOutput) { in check() argument 47 serializeAndCheck(RL, OutputFormat, ExpectedOutput); in check() 52 remarks::Format OutputFormat, StringRef ExpectedOutput) { in check() argument 56 serializeAndCheck(RL, OutputFormat, ExpectedOutput); in check()
|
| /llvm-project-15.0.7/llvm/tools/llvm-size/ |
| H A D | llvm-size.cpp | 78 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() 896 OutputFormat = berkeley; in main() 898 OutputFormat = darwin; in main() [all …]
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | ReplayInlineAdvisor.h | 30 return OutputFormat == Format::LineColumn || in outputColumn() 31 OutputFormat == Format::LineColumnDiscriminator; in outputColumn() 35 return OutputFormat == Format::LineDiscriminator || in outputDiscriminator() 36 OutputFormat == Format::LineColumnDiscriminator; in outputDiscriminator() 39 Format OutputFormat; member
|
| /llvm-project-15.0.7/clang/tools/scan-build/libexec/ |
| H A D | ccc-analyzer | 479 my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'}; 480 if (!defined $OutputFormat) { $OutputFormat = "html"; } 752 if (defined $OutputFormat) { 753 push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat; 754 if ($OutputFormat =~ /plist/ || $OutputFormat =~ /sarif/) { 756 my $Suffix = $OutputFormat =~ /plist/ ? ".plist" : ".sarif";
|
| /llvm-project-15.0.7/clang/lib/Frontend/ |
| H A D | DependencyFile.cpp | 193 OutputFormat(Opts.OutputFormat), InputFileIndex(0) { in DependencyFileGenerator() 283 DependencyOutputFormat OutputFormat) { in PrintFilename() argument 288 if (OutputFormat == DependencyOutputFormat::NMake) { in PrintFilename() 298 assert(OutputFormat == DependencyOutputFormat::Make); in PrintFilename() 368 PrintFilename(OS, File, OutputFormat); in outputDependencyFile() 380 PrintFilename(OS, *I, OutputFormat); in outputDependencyFile()
|
| H A D | ASTConsumers.cpp | 41 OutputKind(K), OutputFormat(Format), FilterString(FilterString), in ASTPrinter() 61 if (OutputFormat == ADOF_Default) in TraverseDecl() 98 D->dump(Out, OutputKind == DumpFull, OutputFormat); in print() 122 ASTDumpOutputFormat OutputFormat; member in __anonba0982200111::ASTPrinter
|
| /llvm-project-15.0.7/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageView.cpp | 78 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 D | CodeCoverage.cpp | 646 cl::opt<CoverageViewOptions::OutputFormat> Format( in run() 654 cl::init(CoverageViewOptions::OutputFormat::Text)); in run() 773 case CoverageViewOptions::OutputFormat::Text: in run() 778 case CoverageViewOptions::OutputFormat::HTML: in run() 783 case CoverageViewOptions::OutputFormat::Lcov: in run() 986 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow() 1128 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow() 1164 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport() 1242 case CoverageViewOptions::OutputFormat::Text: in doExport() 1246 case CoverageViewOptions::OutputFormat::HTML: in doExport() [all …]
|
| H A D | CoverageViewOptions.h | 20 enum class OutputFormat { enum 44 OutputFormat Format;
|
| /llvm-project-15.0.7/llvm/tools/llvm-nm/ |
| H A D | llvm-nm.cpp | 98 static OutputFormatTy OutputFormat; variable 712 if ((OutputFormat == bsd || OutputFormat == posix || in printSymbolList() 716 } else if (OutputFormat == sysv) { in printSymbolList() 776 OutputFormat != posix) { in printSymbolList() 785 if (OutputFormat == posix) { in printSymbolList() 818 } else if (OutputFormat == bsd || (OutputFormat == darwin && !MachO)) { in printSymbolList() 2334 OutputFormat = bsd; in main() 2336 OutputFormat = posix; in main() 2338 OutputFormat = sysv; in main() 2340 OutputFormat = darwin; in main() [all …]
|
| /llvm-project-15.0.7/clang/tools/scan-build/bin/ |
| H A D | scan-build | 67 OutputFormat => "html", 920 if (defined $Options{OutputFormat}) { 921 if ($Options{OutputFormat} =~ /plist/ || 922 $Options{OutputFormat} =~ /sarif/) { 924 ($Options{OutputFormat} =~ /plist/ ? "plist" : "sarif") . 927 if ($Options{OutputFormat} =~ /html/) { 1727 $Options{OutputFormat} = "sarif"; 1733 $Options{OutputFormat} = "plist"; 1739 $Options{OutputFormat} = "plist-html"; 1964 'CCC_ANALYZER_OUTPUT_FORMAT' => $Options{OutputFormat},
|
| /llvm-project-15.0.7/llvm/tools/llvm-rc/ |
| H A D | llvm-rc.cpp | 206 Format OutputFormat = Res; member 401 Opts.OutputFormat = in parseWindresOptions() 405 Opts.OutputFormat = Coff; in parseWindresOptions() 406 deduceFormat(Opts.OutputFormat, Opts.OutputFile); in parseWindresOptions() 408 if (Opts.OutputFormat == Rc) in parseWindresOptions() 410 if (Opts.InputFormat == Opts.OutputFormat) { in parseWindresOptions() 742 if (Opts.OutputFormat == Coff) { in main() 750 if (Opts.OutputFormat == Coff) { in main()
|
| /llvm-project-15.0.7/llvm/tools/llvm-ifs/ |
| H A D | llvm-ifs.cpp | 87 Optional<FileFormat> OutputFormat; member 321 Config.OutputFormat = StringSwitch<Optional<FileFormat>>(A->getValue()) in parseArgs() 326 if (!Config.OutputFormat) in parseArgs() 509 if (!Config.OutputFormat) { in main() 513 } else if (Config.OutputFormat) { in main() 518 if (Config.OutputFormat) { in main() 522 switch (*Config.OutputFormat) { in main()
|
| /llvm-project-15.0.7/llvm/tools/llvm-profdata/ |
| H A D | llvm-profdata.cpp | 353 ProfileFormat OutputFormat, in writeInstrProfile() argument 362 if (OutputFormat == PF_Text) { in writeInstrProfile() 380 if (OutputFormat != PF_Binary && OutputFormat != PF_Compact_Binary && in mergeInstrProfile() 381 OutputFormat != PF_Ext_Binary && OutputFormat != PF_Text) in mergeInstrProfile() 643 writeInstrProfile(OutputFilename, OutputFormat, WC->Writer); in supplementInstrProfile() 713 ProfileFormat OutputFormat, in handleExtBinaryWriter() argument 719 if (WriterList.size() > 0 && OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter() 726 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter() 732 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter() 738 if (OutputFormat != PF_Ext_Binary) in handleExtBinaryWriter() [all …]
|
| /llvm-project-15.0.7/llvm/tools/llvm-objcopy/ |
| H A D | ObjcopyOptions.cpp | 630 StringRef InputFormat, OutputFormat; in parseObjcopyOptions() local 633 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); in parseObjcopyOptions() 636 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); in parseObjcopyOptions() 705 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) in parseObjcopyOptions() 709 if (Config.OutputFormat == FileFormat::Unspecified) { in parseObjcopyOptions() 710 if (OutputFormat.empty()) { in parseObjcopyOptions() 711 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions() 714 getOutputTargetInfoByTargetName(OutputFormat); in parseObjcopyOptions() 717 Config.OutputFormat = Target->Format; in parseObjcopyOptions() 1326 Config.OutputFormat = FileFormat::Unspecified; in parseStripOptions()
|
| H A D | llvm-objcopy.cpp | 117 switch (Config.OutputFormat) { in executeObjcopyOnRawBinary()
|
| /llvm-project-15.0.7/clang/include/clang/Frontend/ |
| H A D | DependencyOutputOptions.h | 51 DependencyOutputFormat OutputFormat = DependencyOutputFormat::Make; variable
|
| H A D | Utils.h | 128 DependencyOutputFormat OutputFormat; variable
|
| /llvm-project-15.0.7/clang-tools-extra/clangd/index/dex/dexp/ |
| H A D | Dexp.cpp | 163 static const auto *OutputFormat = "{0,-4} | {1,-40} | {2,-25}\n"; in run() local 164 llvm::outs() << llvm::formatv(OutputFormat, "Rank", "Symbol ID", in run() 168 llvm::outs() << llvm::formatv(OutputFormat, Rank++, Sym.ID.str(), in run()
|
| /llvm-project-15.0.7/llvm/tools/llvm-profgen/ |
| H A D | ProfileGenerator.cpp | 25 static cl::opt<SampleProfileFormat> OutputFormat( variable 153 if (PopulateProfileSymbolList && OutputFormat == SPF_Ext_Binary) { in write() 163 auto WriterOrErr = SampleProfileWriter::create(OutputFilename, OutputFormat); in write() 168 if (OutputFormat != SPF_Ext_Binary) in write()
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjCopy/ |
| H A D | CommonConfig.h | 206 FileFormat OutputFormat = FileFormat::Unspecified; member
|
| /llvm-project-15.0.7/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObjcopy.cpp | 158 switch (Config.OutputFormat) { in createWriter()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | DeclBase.h | 1209 ASTDumpOutputFormat OutputFormat = ADOF_Default) const;
|
| /llvm-project-15.0.7/clang-tools-extra/docs/ |
| H A D | pp-trace.rst | 16 :ref:`OutputFormat`.
|
| /llvm-project-15.0.7/clang/include/clang/Driver/ |
| H A D | Options.td | 725 MarshallingInfoFlag<DependencyOutputOpts<"OutputFormat">, "DependencyOutputFormat::Make">,
|