Lines Matching defs:CoverageViewOptions
18 struct CoverageViewOptions { struct
19 enum class OutputFormat {
24 bool Debug;
25 bool Colors;
26 bool ShowLineNumbers;
27 bool ShowLineStats;
28 bool ShowRegionMarkers;
29 bool ShowLineStatsOrRegionMarkers;
30 bool ShowExpandedRegions;
31 bool ShowFunctionInstantiations;
32 bool ShowFullFilenames;
33 OutputFormat Format;
34 std::string ShowOutputDirectory;
37 ColoredRawOstream colored_ostream(raw_ostream &OS, in colored_ostream()
43 bool hasOutputDirectory() const { return ShowOutputDirectory != ""; } in hasOutputDirectory()