Lines Matching refs:DotCfgDiffDisplayGraph
1506 class DotCfgDiffDisplayGraph;
1590 class DotCfgDiffDisplayGraph { class
1592 DotCfgDiffDisplayGraph(std::string Name) : GraphName(Name) {} in DotCfgDiffDisplayGraph() function in __anonb0928b5c2a11::DotCfgDiffDisplayGraph
1742 void createDisplayEdges(DotCfgDiffDisplayGraph &Graph, unsigned DisplayNode,
1768 DotCfgDiffDisplayGraph createDisplayGraph(StringRef Title,
1965 DotCfgDiffDisplayGraph DotCfgDiff::createDisplayGraph(StringRef Title, in createDisplayGraph()
1971 DotCfgDiffDisplayGraph G(Title.str()); in createDisplayGraph()
1995 DotCfgDiffDisplayGraph &DisplayGraph, unsigned DisplayNodeIndex, in createDisplayEdges()
2023 template <> struct GraphTraits<DotCfgDiffDisplayGraph *> {
2026 using nodes_iterator = DotCfgDiffDisplayGraph::NodeIterator;
2030 static NodeRef getEntryNode(const DotCfgDiffDisplayGraph *G) { in getEntryNode()
2037 static nodes_iterator nodes_begin(const DotCfgDiffDisplayGraph *G) { in nodes_begin()
2040 static nodes_iterator nodes_end(const DotCfgDiffDisplayGraph *G) { in nodes_end()
2048 static unsigned size(const DotCfgDiffDisplayGraph *G) { return G->size(); } in size()
2052 struct DOTGraphTraits<DotCfgDiffDisplayGraph *> : public DefaultDOTGraphTraits {
2057 static std::string getGraphName(const DotCfgDiffDisplayGraph *DiffData) { in getGraphName()
2061 getGraphProperties(const DotCfgDiffDisplayGraph *DiffData) { in getGraphProperties()
2065 const DotCfgDiffDisplayGraph *DiffData) { in getNodeLabel()
2069 const DotCfgDiffDisplayGraph *DiffData) { in getNodeAttributes()
2078 const DotCfgDiffDisplayGraph *DiffData) { in getEdgeAttributes()
2087 void DotCfgDiffDisplayGraph::generateDotFile(StringRef DotFile) { in generateDotFile()
2162 DotCfgDiffDisplayGraph DG = Diff.createDisplayGraph(Text, EntryBlockName); in handleFunctionCompare()