Lines Matching refs:StatType

60 static cl::opt<GraphRenderer::StatType>
64 cl::init(GraphRenderer::StatType::NONE),
65 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
67 clEnumValN(GraphRenderer::StatType::COUNT,
69 clEnumValN(GraphRenderer::StatType::MIN, "min",
71 clEnumValN(GraphRenderer::StatType::MED, "med",
73 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
75 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
77 clEnumValN(GraphRenderer::StatType::MAX, "max",
79 clEnumValN(GraphRenderer::StatType::SUM, "sum",
84 static cl::opt<GraphRenderer::StatType> GraphVertexLabel(
88 cl::init(GraphRenderer::StatType::NONE),
89 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
91 clEnumValN(GraphRenderer::StatType::COUNT, "count",
93 clEnumValN(GraphRenderer::StatType::MIN, "min",
95 clEnumValN(GraphRenderer::StatType::MED, "med",
97 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
99 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
101 clEnumValN(GraphRenderer::StatType::MAX, "max",
103 clEnumValN(GraphRenderer::StatType::SUM, "sum",
108 static cl::opt<GraphRenderer::StatType> GraphEdgeColorType(
112 cl::init(GraphRenderer::StatType::NONE),
113 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
115 clEnumValN(GraphRenderer::StatType::COUNT, "count",
117 clEnumValN(GraphRenderer::StatType::MIN, "min",
119 clEnumValN(GraphRenderer::StatType::MED, "med",
121 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
123 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
125 clEnumValN(GraphRenderer::StatType::MAX, "max",
127 clEnumValN(GraphRenderer::StatType::SUM, "sum",
132 static cl::opt<GraphRenderer::StatType> GraphVertexColorType(
136 cl::init(GraphRenderer::StatType::NONE),
137 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
139 clEnumValN(GraphRenderer::StatType::COUNT, "count",
141 clEnumValN(GraphRenderer::StatType::MIN, "min",
143 clEnumValN(GraphRenderer::StatType::MED, "med",
145 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
147 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
149 clEnumValN(GraphRenderer::StatType::MAX, "max",
151 clEnumValN(GraphRenderer::StatType::SUM, "sum",
353 GraphRenderer::TimeStat::getString(GraphRenderer::StatType T) const {
360 case GraphRenderer::StatType::NONE:
362 case GraphRenderer::StatType::COUNT:
368 static_cast<int>(GraphRenderer::StatType::MIN)];
376 double GraphRenderer::TimeStat::getDouble(StatType T) const {
382 case GraphRenderer::StatType::NONE:
385 case GraphRenderer::StatType::COUNT:
391 static_cast<int>(GraphRenderer::StatType::MIN)];
403 void GraphRenderer::exportGraphAsDOT(raw_ostream &OS, StatType ET, StatType EC,
404 StatType VT, StatType VC) {
407 if (VT != StatType::NONE)
414 if (EC != StatType::NONE)
426 OS << "F" << V.first << " [label=\"" << (VT != StatType::NONE ? "{" : "")
430 if (VT != StatType::NONE)
434 if (VC != StatType::NONE)