Lines Matching refs:OSRef
404 raw_ostream &OSRef = *OS.get(); in createIndexFile() local
407 emitPrelude(OSRef, Opts, getPathToStyle("")); in createIndexFile()
411 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in createIndexFile()
412 OSRef << tag(ReportTitleTag, "Coverage Report"); in createIndexFile()
414 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in createIndexFile()
417 OSRef << tag("p", "Click " + in createIndexFile()
425 OSRef << BeginCenteredDiv << BeginTable; in createIndexFile()
426 emitColumnLabelsForIndex(OSRef, Opts); in createIndexFile()
433 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]); in createIndexFile()
437 emitFileSummary(OSRef, "Totals", Totals, /*IsTotals=*/true); in createIndexFile()
438 OSRef << EndTable << EndCenteredDiv; in createIndexFile()
444 OSRef << tag("p", "Files which contain no functions. (These " in createIndexFile()
447 OSRef << BeginCenteredDiv << BeginTable; in createIndexFile()
451 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n'; in createIndexFile()
453 OSRef << EndTable << EndCenteredDiv; in createIndexFile()
456 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile()
457 emitEpilog(OSRef); in createIndexFile()