Lines Matching refs:OSRef
410 raw_ostream &OSRef = *OS.get(); in createIndexFile() local
413 emitPrelude(OSRef, Opts, getPathToStyle("")); in createIndexFile()
417 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in createIndexFile()
418 OSRef << tag(ReportTitleTag, "Coverage Report"); in createIndexFile()
420 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in createIndexFile()
423 OSRef << tag("p", "Click " + in createIndexFile()
431 OSRef << BeginCenteredDiv << BeginTable; in createIndexFile()
432 emitColumnLabelsForIndex(OSRef, Opts); in createIndexFile()
439 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]); in createIndexFile()
443 emitFileSummary(OSRef, "Totals", Totals, /*IsTotals=*/true); in createIndexFile()
444 OSRef << EndTable << EndCenteredDiv; in createIndexFile()
450 OSRef << tag("p", "Files which contain no functions. (These " in createIndexFile()
453 OSRef << BeginCenteredDiv << BeginTable; in createIndexFile()
457 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n'; in createIndexFile()
459 OSRef << EndTable << EndCenteredDiv; in createIndexFile()
462 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile()
463 emitEpilog(OSRef); in createIndexFile()