Lines Matching refs:Opts
26 std::string escape(StringRef Str, const CoverageViewOptions &Opts) { in escape() argument
32 unsigned NumSpaces = Opts.TabSize - (ColNum % Opts.TabSize); in escape()
259 void emitPrelude(raw_ostream &OS, const CoverageViewOptions &Opts, in emitPrelude() argument
270 << escape(PathToStyle, Opts) << "'>"; in emitPrelude()
290 if (!Opts.hasOutputDirectory()) { in createViewFile()
291 emitPrelude(*OS.get(), Opts); in createViewFile()
294 emitPrelude(*OS.get(), Opts, getPathToStyle(ViewPath)); in createViewFile()
306 const CoverageViewOptions &Opts) { in emitColumnLabelsForIndex() argument
310 if (Opts.ShowInstantiationSummary) in emitColumnLabelsForIndex()
314 if (Opts.ShowRegionSummary) in emitColumnLabelsForIndex()
316 if (Opts.ShowBranchSummary) in emitColumnLabelsForIndex()
327 std::string LinkText = escape(LinkTextStr, Opts); in buildLinkToFile()
329 escape(getOutputPath(SF, "html", /*InToplevel=*/false), Opts); in buildLinkToFile()
372 if (Opts.ShowInstantiationSummary) in emitFileSummary()
379 if (Opts.ShowRegionSummary) in emitFileSummary()
383 if (Opts.ShowBranchSummary) in emitFileSummary()
412 assert(Opts.hasOutputDirectory() && "No output directory for index file"); in createIndexFile()
413 emitPrelude(OSRef, Opts, getPathToStyle("")); in createIndexFile()
416 if (Opts.hasProjectTitle()) in createIndexFile()
417 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in createIndexFile()
419 if (Opts.hasCreatedTime()) in createIndexFile()
420 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in createIndexFile()
432 emitColumnLabelsForIndex(OSRef, Opts); in createIndexFile()
435 Coverage, Totals, SourceFiles, Opts, Filters); in createIndexFile()
462 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile()