Lines Matching refs:OSRef
406 raw_ostream &OSRef = *OS.get(); in createIndexFile() local
409 emitPrelude(OSRef, Opts, getPathToStyle("")); in createIndexFile()
413 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in createIndexFile()
414 OSRef << tag(ReportTitleTag, "Coverage Report"); in createIndexFile()
416 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in createIndexFile()
419 OSRef << tag("p", "Click " + in createIndexFile()
427 OSRef << BeginCenteredDiv << BeginTable; in createIndexFile()
428 emitColumnLabelsForIndex(OSRef, Opts); in createIndexFile()
435 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]); in createIndexFile()
439 emitFileSummary(OSRef, "Totals", Totals, /*IsTotals=*/true); in createIndexFile()
440 OSRef << EndTable << EndCenteredDiv; in createIndexFile()
446 OSRef << tag("p", "Files which contain no functions. (These " in createIndexFile()
449 OSRef << BeginCenteredDiv << BeginTable; in createIndexFile()
453 OSRef << tag("tr", tag("td", tag("pre", Link)), "light-row") << '\n'; in createIndexFile()
455 OSRef << EndTable << EndCenteredDiv; in createIndexFile()
458 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile()
459 emitEpilog(OSRef); in createIndexFile()