Lines Matching defs:OSRef
603 void CoveragePrinterHTML::emitReportHeader(raw_ostream &OSRef,
607 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts));
608 OSRef << tag(ReportTitleTag, Title);
610 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts));
613 OSRef << tag("p", "Click " +
621 OSRef << BeginCenteredDiv << BeginTable;
622 emitColumnLabelsForIndex(OSRef, Opts);
657 raw_ostream &OSRef = *OS.get();
660 emitPrelude(OSRef, Opts, getPathToStyle(""), getPathToJavaScript(""));
662 emitReportHeader(OSRef, "Coverage Report");
670 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]);
674 emitFileSummary(OSRef, "Totals", Totals, /*IsTotals=*/true);
675 OSRef << EndTable << EndCenteredDiv;
681 OSRef << tag("p", "Files which contain no functions. (These "
684 OSRef << BeginCenteredDiv << BeginTable;
688 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n';
690 OSRef << EndTable << EndCenteredDiv;
693 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts));
694 emitEpilog(OSRef);
722 raw_ostream &OSRef = *OS.get();
726 emitPrelude(OSRef, Options, getPathToStyle(IndexHtmlPath),
730 Printer.emitReportHeader(OSRef, "Coverage Report (" + NavLink + ")");
740 emitTableRow(OSRef, Options, buildRelLinkToFile(Report.Name), Report,
749 emitTableRow(OSRef, Options, buildRelLinkToFile(Report.Name), Report,
754 emitTableRow(OSRef, Options, "Totals", SubTotals, /*IsTotals=*/false);
755 OSRef << EndTable << EndCenteredDiv;
761 OSRef << tag("p", "Files which contain no functions. (These "
764 OSRef << BeginCenteredDiv << BeginTable;
767 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n';
769 OSRef << EndTable << EndCenteredDiv;
773 OSRef << tag("h5", escape(Options.getLLVMVersionString(), Options));
774 emitEpilog(OSRef);