Lines Matching refs:CoverageViewOptions

50                               const CoverageViewOptions &Options,
141 CoverageViewOptions ViewOpts;
646 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
648 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", in run()
650 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", in run()
652 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", 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()
939 cl::opt<CoverageViewOptions::BranchOutputType> ShowBranches( in doShow()
942 cl::values(clEnumValN(CoverageViewOptions::BranchOutputType::Count, in doShow()
944 clEnumValN(CoverageViewOptions::BranchOutputType::Percent, in doShow()
946 cl::init(CoverageViewOptions::BranchOutputType::Off)); in doShow()
986 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
1038 ShowBranches == CoverageViewOptions::BranchOutputType::Count; in doShow()
1040 ShowBranches == CoverageViewOptions::BranchOutputType::Percent; in doShow()
1128 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
1164 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport()
1167 } else if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doReport()
1220 if (ViewOpts.Format != CoverageViewOptions::OutputFormat::Text && in doExport()
1221 ViewOpts.Format != CoverageViewOptions::OutputFormat::Lcov) { in doExport()
1242 case CoverageViewOptions::OutputFormat::Text: in doExport()
1246 case CoverageViewOptions::OutputFormat::HTML: in doExport()
1250 case CoverageViewOptions::OutputFormat::Lcov: in doExport()