Lines Matching refs:CoverageViewOptions
50 const CoverageViewOptions &Options,
141 CoverageViewOptions ViewOpts;
648 cl::opt<CoverageViewOptions::OutputFormat> Format( in run()
650 cl::values(clEnumValN(CoverageViewOptions::OutputFormat::Text, "text", in run()
652 clEnumValN(CoverageViewOptions::OutputFormat::HTML, "html", in run()
654 clEnumValN(CoverageViewOptions::OutputFormat::Lcov, "lcov", in run()
656 cl::init(CoverageViewOptions::OutputFormat::Text)); in run()
768 case CoverageViewOptions::OutputFormat::Text: in run()
773 case CoverageViewOptions::OutputFormat::HTML: in run()
778 case CoverageViewOptions::OutputFormat::Lcov: in run()
912 cl::opt<CoverageViewOptions::BranchOutputType> ShowBranches( in doShow()
915 cl::values(clEnumValN(CoverageViewOptions::BranchOutputType::Count, in doShow()
917 clEnumValN(CoverageViewOptions::BranchOutputType::Percent, in doShow()
919 cl::init(CoverageViewOptions::BranchOutputType::Off)); in doShow()
954 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doShow()
965 ShowBranches == CoverageViewOptions::BranchOutputType::Count; in doShow()
967 ShowBranches == CoverageViewOptions::BranchOutputType::Percent; in doShow()
1055 (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML); in doShow()
1091 if (ViewOpts.Format == CoverageViewOptions::OutputFormat::HTML) { in doReport()
1094 } else if (ViewOpts.Format == CoverageViewOptions::OutputFormat::Lcov) { in doReport()
1141 if (ViewOpts.Format != CoverageViewOptions::OutputFormat::Text && in doExport()
1142 ViewOpts.Format != CoverageViewOptions::OutputFormat::Lcov) { in doExport()
1157 case CoverageViewOptions::OutputFormat::Text: in doExport()
1161 case CoverageViewOptions::OutputFormat::HTML: in doExport()
1165 case CoverageViewOptions::OutputFormat::Lcov: in doExport()