Lines Matching refs:GraphRenderer

113 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeLabel(
116 cl::init(GraphRenderer::StatType::NONE),
117 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
119 clEnumValN(GraphRenderer::StatType::COUNT, "count",
121 clEnumValN(GraphRenderer::StatType::MIN, "min",
123 clEnumValN(GraphRenderer::StatType::MED, "med",
125 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
127 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
129 clEnumValN(GraphRenderer::StatType::MAX, "max",
131 clEnumValN(GraphRenderer::StatType::SUM, "sum",
137 static cl::opt<GraphRenderer::StatType> GraphDiffEdgeColor(
140 cl::init(GraphRenderer::StatType::NONE),
141 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
143 clEnumValN(GraphRenderer::StatType::COUNT, "count",
145 clEnumValN(GraphRenderer::StatType::MIN, "min",
147 clEnumValN(GraphRenderer::StatType::MED, "med",
149 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
151 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
153 clEnumValN(GraphRenderer::StatType::MAX, "max",
155 clEnumValN(GraphRenderer::StatType::SUM, "sum",
161 static cl::opt<GraphRenderer::StatType> GraphDiffVertexLabel(
165 cl::init(GraphRenderer::StatType::NONE),
166 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
168 clEnumValN(GraphRenderer::StatType::COUNT, "count",
170 clEnumValN(GraphRenderer::StatType::MIN, "min",
172 clEnumValN(GraphRenderer::StatType::MED, "med",
174 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
176 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
178 clEnumValN(GraphRenderer::StatType::MAX, "max",
180 clEnumValN(GraphRenderer::StatType::SUM, "sum",
186 static cl::opt<GraphRenderer::StatType> GraphDiffVertexColor(
190 cl::init(GraphRenderer::StatType::NONE),
191 cl::values(clEnumValN(GraphRenderer::StatType::NONE, "none",
193 clEnumValN(GraphRenderer::StatType::COUNT, "count",
195 clEnumValN(GraphRenderer::StatType::MIN, "min",
197 clEnumValN(GraphRenderer::StatType::MED, "med",
199 clEnumValN(GraphRenderer::StatType::PCT90, "90p",
201 clEnumValN(GraphRenderer::StatType::PCT99, "99p",
203 clEnumValN(GraphRenderer::StatType::MAX, "max",
205 clEnumValN(GraphRenderer::StatType::SUM, "sum",
429 std::array<GraphRenderer::Factory, 2> Factories{ in __anon25b2bc730102()
445 std::array<GraphRenderer::GraphT, 2> Graphs; in __anon25b2bc730102()
460 auto GraphRenderer = *GraphRendererOrErr; in __anon25b2bc730102() local
462 Graphs[i] = GraphRenderer.getGraph(); in __anon25b2bc730102()