| /src/external/apache2/llvm/dist/llvm/include/llvm/InterfaceStub/ |
| ELFObjHandler.h | 38 /// @param OutputFormat Target ELFType to write binary as. 42 ELFTarget OutputFormat, bool WriteIfChanged = false);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| CoverageViewOptions.h | 20 enum class OutputFormat { 44 OutputFormat Format;
|
| SourceCoverageView.cpp | 78 case CoverageViewOptions::OutputFormat::Text: 80 case CoverageViewOptions::OutputFormat::HTML: 82 case CoverageViewOptions::OutputFormat::Lcov: 144 case CoverageViewOptions::OutputFormat::Text: 147 case CoverageViewOptions::OutputFormat::HTML: 150 case CoverageViewOptions::OutputFormat::Lcov:
|
| CodeCoverage.cpp | 648 cl::opt<CoverageViewOptions::OutputFormat> Format( 650 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", 652 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", 654 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", 656 cl::init(CoverageViewOptions::OutputFormat::Text)); 768 case CoverageViewOptions::OutputFormat::Text: 773 case CoverageViewOptions::OutputFormat::HTML: 778 case CoverageViewOptions::OutputFormat::Lcov: 954 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { 1055 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-size/ |
| llvm-size.cpp | 40 OutputFormat("format", cl::desc("Specify output format"), 215 /// This is when used when @c OutputFormat is darwin and produces the same 290 /// This is when used when @c OutputFormat is berkeley with a Mach-O file and 365 /// The format used is determined by @c OutputFormat and @c Radix. 372 // If OutputFormat is darwin and we have a MachOObjectFile print as darwin's 373 // size(1) -m output, else if OutputFormat is darwin and not a Mach-O object 374 // let it fall through to OutputFormat berkeley. 376 if (OutputFormat == darwin && MachO) 378 // If we have a MachOObjectFile and the OutputFormat is berkeley print as 380 else if (MachO && OutputFormat == berkeley [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Frontend/ |
| DependencyOutputOptions.h | 51 DependencyOutputFormat OutputFormat = DependencyOutputFormat::Make;
|
| Utils.h | 144 DependencyOutputFormat OutputFormat;
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| DependencyFile.cpp | 194 OutputFormat(Opts.OutputFormat), InputFileIndex(0) { 284 DependencyOutputFormat OutputFormat) { 289 if (OutputFormat == DependencyOutputFormat::NMake) { 299 assert(OutputFormat == DependencyOutputFormat::Make); 369 PrintFilename(OS, File, OutputFormat); 381 PrintFilename(OS, *I, OutputFormat);
|
| ASTConsumers.cpp | 41 OutputKind(K), OutputFormat(Format), FilterString(FilterString), 95 D->dump(Out, OutputKind == DumpFull, OutputFormat); 103 // FIXME: Support OutputFormat in type dumping. 119 ASTDumpOutputFormat OutputFormat;
|
| /src/external/apache2/llvm/dist/clang/tools/scan-build/libexec/ |
| ccc-analyzer | 476 my $OutputFormat = $ENV{'CCC_ANALYZER_OUTPUT_FORMAT'}; 477 if (!defined $OutputFormat) { $OutputFormat = "html"; } 749 if (defined $OutputFormat) { 750 push @AnalyzeArgs, "-analyzer-output=" . $OutputFormat; 751 if ($OutputFormat =~ /plist/ || $OutputFormat =~ /sarif/) { 753 my $Suffix = $OutputFormat =~ /plist/ ? ".plist" : ".sarif";
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-nm/ |
| llvm-nm.cpp | 54 cl::opt<OutputFormatTy> OutputFormat( 63 cl::aliasopt(OutputFormat), cl::NotHidden); 379 // the OutputFormat is darwin or we are printing Mach-O symbols in hex. For 743 if (OutputFormat == posix && !ArchiveName.empty()) 774 if ((OutputFormat == bsd || OutputFormat == posix || 775 OutputFormat == just_symbols) && 778 } else if (OutputFormat == sysv) { 795 printFormat = OutputFormat == posix ? "%" PRIo64 : "%016" PRIo64; 798 printFormat = OutputFormat == posix ? "%" PRIx64 : "%016" PRIx64 [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/ |
| llvm-profdata.cpp | 305 ProfileFormat OutputFormat, 309 OutputFormat == PF_Text ? sys::fs::OF_TextWithCRLF 314 if (OutputFormat == PF_Text) { 326 ProfileFormat OutputFormat, bool OutputSparse, 331 if (OutputFormat != PF_Binary && OutputFormat != PF_Compact_Binary && 332 OutputFormat != PF_Ext_Binary && OutputFormat != PF_Text) 398 writeInstrProfile(OutputFilename, OutputFormat, Contexts[0]->Writer); 521 /// \p OutputFormat specifies the output profile format. \p OutputSpars [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/ |
| llvm-rc.cpp | 199 Format OutputFormat = Res; 401 Opts.OutputFormat = 405 Opts.OutputFormat = Coff; 406 deduceFormat(Opts.OutputFormat, Opts.OutputFile); 408 if (Opts.OutputFormat == Rc) 410 if (Opts.InputFormat == Opts.OutputFormat) { 739 if (Opts.OutputFormat == Coff) { 747 if (Opts.OutputFormat == Coff) {
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ |
| CommonConfig.h | 150 FileFormat OutputFormat = FileFormat::Unspecified;
|
| ConfigManager.cpp | 729 StringRef InputFormat, OutputFormat; 732 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); 735 OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); 750 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) 754 if (Config.OutputFormat == FileFormat::Unspecified) { 755 if (OutputFormat.empty()) { 756 Config.OutputFormat = Config.InputFormat; 759 getOutputTargetInfoByTargetName(OutputFormat); 762 Config.OutputFormat = Target->Format [all...] |
| llvm-objcopy.cpp | 157 switch (Config.OutputFormat) {
|
| /src/external/apache2/llvm/dist/llvm/lib/InterfaceStub/ |
| ELFObjHandler.cpp | 670 ELFTarget OutputFormat, bool WriteIfChanged) { 671 if (OutputFormat == ELFTarget::ELF32LE) 673 if (OutputFormat == ELFTarget::ELF32BE) 675 if (OutputFormat == ELFTarget::ELF64LE) 677 if (OutputFormat == ELFTarget::ELF64BE)
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dml/dcn20/ |
| amdgpu_display_mode_vba_20.c | 78 enum output_format_class OutputFormat, 461 enum output_format_class OutputFormat, 542 if (OutputFormat == dm_420 || (InterlaceEnable && ProgressiveToInterlaceUnitInOPP)) 1785 if (mode_lib->vba.OutputFormat[k] == dm_420 1786 || mode_lib->vba.OutputFormat[k] == dm_n422) 1824 mode_lib->vba.OutputFormat[k]) 1826 mode_lib->vba.OutputFormat[k]); 1838 mode_lib->vba.OutputFormat[k]) 1840 mode_lib->vba.OutputFormat[k])); 2114 mode_lib->vba.OutputFormat[k] [all...] |
| amdgpu_display_mode_vba_20v2.c | 83 enum output_format_class OutputFormat, 490 enum output_format_class OutputFormat, 534 if (OutputFormat == dm_420 || (Interlace && ProgressiveToInterlaceUnitInOPP)) 1821 if (mode_lib->vba.OutputFormat[k] == dm_420 1822 || mode_lib->vba.OutputFormat[k] == dm_n422) 1860 mode_lib->vba.OutputFormat[k]) 1862 mode_lib->vba.OutputFormat[k]); 1874 mode_lib->vba.OutputFormat[k]) 1876 mode_lib->vba.OutputFormat[k])); 2136 mode_lib->vba.SwathWidthY[k] / mode_lib->vba.HRatio[k], mode_lib->vba.OutputFormat[k], mode_lib->vba.HTotal[k] [all...] |
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dml/dcn21/ |
| amdgpu_display_mode_vba_21.c | 99 enum output_format_class OutputFormat, 652 enum output_format_class OutputFormat, 751 if (OutputFormat == dm_420 || (myPipe->InterlaceEnable && ProgressiveToInterlaceUnitInOPP)) 1772 if (mode_lib->vba.OutputFormat[k] == dm_420 1773 || mode_lib->vba.OutputFormat[k] == dm_n422) 1811 mode_lib->vba.OutputFormat[k]) 1813 mode_lib->vba.OutputFormat[k]); 1825 mode_lib->vba.OutputFormat[k]) 1827 mode_lib->vba.OutputFormat[k])); 2176 mode_lib->vba.OutputFormat[k] [all...] |
| /src/external/apache2/llvm/dist/clang/tools/scan-build/bin/ |
| scan-build | 68 OutputFormat => "html", 957 if (defined $Options{OutputFormat}) { 958 if ($Options{OutputFormat} =~ /plist/ || 959 $Options{OutputFormat} =~ /sarif/) { 961 ($Options{OutputFormat} =~ /plist/ ? "plist" : "sarif") . 964 if ($Options{OutputFormat} =~ /html/) { 1764 $Options{OutputFormat} = "sarif"; 1770 $Options{OutputFormat} = "plist"; 1776 $Options{OutputFormat} = "plist-html"; 2001 'CCC_ANALYZER_OUTPUT_FORMAT' => $Options{OutputFormat}, [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/ |
| ProfileGenerator.cpp | 18 static cl::opt<SampleProfileFormat> OutputFormat( 94 auto WriterOrErr = SampleProfileWriter::create(OutputFilename, OutputFormat);
|
| /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dml/ |
| display_mode_vba.h | 328 enum output_format_class OutputFormat[DC__NUM_DPP__MAX];
|
| amdgpu_display_mode_vba.c | 445 mode_lib->vba.OutputFormat[mode_lib->vba.NumberOfActivePlanes] =
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/ |
| ELFObjcopy.cpp | 139 // Depending on the initial ELFT and OutputFormat we need a different Writer. 160 switch (Config.OutputFormat) {
|