Lines Matching refs:CoverageViewOptions
55 const CoverageViewOptions &Options,
148 CoverageViewOptions ViewOpts;
697 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
699 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", in run()
701 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", in run()
703 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", in run()
705 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
841 case CoverageViewOptions::OutputFormat::Text: in run()
846 case CoverageViewOptions::OutputFormat::HTML: in run()
851 case CoverageViewOptions::OutputFormat::Lcov: in run()
999 cl::opt<CoverageViewOptions::BranchOutputType> ShowBranches( in doShow()
1002 cl::values(clEnumValN(CoverageViewOptions::BranchOutputType::Count, in doShow()
1004 clEnumValN(CoverageViewOptions::BranchOutputType::Percent, in doShow()
1006 cl::init(CoverageViewOptions::BranchOutputType::Off)); in doShow()
1065 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
1117 ShowBranches == CoverageViewOptions::BranchOutputType::Count; in doShow()
1120 ShowBranches == CoverageViewOptions::BranchOutputType::Percent; in doShow()
1215 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
1251 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport()
1254 } else if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doReport()
1319 if (ViewOpts.Format != CoverageViewOptions::OutputFormat::Text && in doExport()
1320 ViewOpts.Format != CoverageViewOptions::OutputFormat::Lcov) { in doExport()
1343 case CoverageViewOptions::OutputFormat::Text: in doExport()
1347 case CoverageViewOptions::OutputFormat::HTML: in doExport()
1351 case CoverageViewOptions::OutputFormat::Lcov: in doExport()