Lines Matching defs:OSRef
608 void CoveragePrinterHTML::emitReportHeader(raw_ostream &OSRef,
612 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts));
613 OSRef << tag(ReportTitleTag, Title);
615 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts));
618 OSRef << tag("p", "Click " +
626 OSRef << BeginCenteredDiv << BeginTable;
627 emitColumnLabelsForIndex(OSRef, Opts);
662 raw_ostream &OSRef = *OS.get();
665 emitPrelude(OSRef, Opts, getPathToStyle(""), getPathToJavaScript(""));
667 emitReportHeader(OSRef, "Coverage Report");
675 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]);
679 emitFileSummary(OSRef, "Totals", Totals, /*IsTotals=*/true);
680 OSRef << EndTable << EndCenteredDiv;
686 OSRef << tag("p", "Files which contain no functions. (These "
689 OSRef << BeginCenteredDiv << BeginTable;
693 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n';
695 OSRef << EndTable << EndCenteredDiv;
698 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts));
699 emitEpilog(OSRef);
727 raw_ostream &OSRef = *OS.get();
731 emitPrelude(OSRef, Options, getPathToStyle(IndexHtmlPath),
735 Printer.emitReportHeader(OSRef, "Coverage Report (" + NavLink + ")");
745 emitTableRow(OSRef, Options, buildRelLinkToFile(Report.Name), Report,
754 emitTableRow(OSRef, Options, buildRelLinkToFile(Report.Name), Report,
759 emitTableRow(OSRef, Options, "Totals", SubTotals, /*IsTotals=*/false);
760 OSRef << EndTable << EndCenteredDiv;
766 OSRef << tag("p", "Files which contain no functions. (These "
769 OSRef << BeginCenteredDiv << BeginTable;
772 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n';
774 OSRef << EndTable << EndCenteredDiv;
778 OSRef << tag("h5", escape(Options.getLLVMVersionString(), Options));
779 emitEpilog(OSRef);