Lines Matching refs:CoverageViewOptions

55                               const CoverageViewOptions &Options,
148 CoverageViewOptions ViewOpts;
691 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
693 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", in run()
695 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", in run()
697 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", in run()
699 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
826 case CoverageViewOptions::OutputFormat::Text: in run()
831 case CoverageViewOptions::OutputFormat::HTML: in run()
836 case CoverageViewOptions::OutputFormat::Lcov: in run()
984 cl::opt<CoverageViewOptions::BranchOutputType> ShowBranches( in doShow()
987 cl::values(clEnumValN(CoverageViewOptions::BranchOutputType::Count, in doShow()
989 clEnumValN(CoverageViewOptions::BranchOutputType::Percent, in doShow()
991 cl::init(CoverageViewOptions::BranchOutputType::Off)); in doShow()
1040 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
1092 ShowBranches == CoverageViewOptions::BranchOutputType::Count; in doShow()
1095 ShowBranches == CoverageViewOptions::BranchOutputType::Percent; in doShow()
1184 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
1220 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport()
1223 } else if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doReport()
1281 if (ViewOpts.Format != CoverageViewOptions::OutputFormat::Text && in doExport()
1282 ViewOpts.Format != CoverageViewOptions::OutputFormat::Lcov) { in doExport()
1303 case CoverageViewOptions::OutputFormat::Text: in doExport()
1307 case CoverageViewOptions::OutputFormat::HTML: in doExport()
1311 case CoverageViewOptions::OutputFormat::Lcov: in doExport()