Lines Matching refs:Opts
27 std::string escape(StringRef Str, const CoverageViewOptions &Opts) { in escape() argument
33 unsigned NumSpaces = Opts.TabSize - (ColNum % Opts.TabSize); in escape()
261 void emitPrelude(raw_ostream &OS, const CoverageViewOptions &Opts, in emitPrelude() argument
272 << escape(PathToStyle, Opts) << "'>"; in emitPrelude()
292 if (!Opts.hasOutputDirectory()) { in createViewFile()
293 emitPrelude(*OS.get(), Opts); in createViewFile()
296 emitPrelude(*OS.get(), Opts, getPathToStyle(ViewPath)); in createViewFile()
308 const CoverageViewOptions &Opts) { in emitColumnLabelsForIndex() argument
312 if (Opts.ShowInstantiationSummary) in emitColumnLabelsForIndex()
316 if (Opts.ShowRegionSummary) 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()
408 assert(Opts.hasOutputDirectory() && "No output directory for index file"); in createIndexFile()
409 emitPrelude(OSRef, Opts, getPathToStyle("")); in createIndexFile()
412 if (Opts.hasProjectTitle()) in createIndexFile()
413 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in createIndexFile()
415 if (Opts.hasCreatedTime()) in createIndexFile()
416 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in createIndexFile()
428 emitColumnLabelsForIndex(OSRef, Opts); in createIndexFile()
431 Coverage, Totals, SourceFiles, Opts, Filters); in createIndexFile()
458 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile()