Lines Matching refs:CoverageViewOptions
55 const CoverageViewOptions &Options,
151 CoverageViewOptions ViewOpts;
719 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
721 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", in run()
723 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", in run()
725 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", in run()
727 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
854 case CoverageViewOptions::OutputFormat::Text: in run()
859 case CoverageViewOptions::OutputFormat::HTML: in run()
864 case CoverageViewOptions::OutputFormat::Lcov: in run()
1012 cl::opt<CoverageViewOptions::BranchOutputType> ShowBranches( in doShow()
1015 cl::values(clEnumValN(CoverageViewOptions::BranchOutputType::Count, in doShow()
1017 clEnumValN(CoverageViewOptions::BranchOutputType::Percent, in doShow()
1019 cl::init(CoverageViewOptions::BranchOutputType::Off)); in doShow()
1068 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
1120 ShowBranches == CoverageViewOptions::BranchOutputType::Count; in doShow()
1123 ShowBranches == CoverageViewOptions::BranchOutputType::Percent; in doShow()
1212 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
1248 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport()
1251 } else if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doReport()
1309 if (ViewOpts.Format != CoverageViewOptions::OutputFormat::Text && in doExport()
1310 ViewOpts.Format != CoverageViewOptions::OutputFormat::Lcov) { in doExport()
1331 case CoverageViewOptions::OutputFormat::Text: in doExport()
1335 case CoverageViewOptions::OutputFormat::HTML: in doExport()
1339 case CoverageViewOptions::OutputFormat::Lcov: in doExport()