Lines Matching refs:DotCfgDiffDisplayGraph

1229 class DotCfgDiffDisplayGraph;
1313 class DotCfgDiffDisplayGraph { class
1315 DotCfgDiffDisplayGraph(std::string Name) : GraphName(Name) {} in DotCfgDiffDisplayGraph() function in __anone1b304962011::DotCfgDiffDisplayGraph
1465 void createDisplayEdges(DotCfgDiffDisplayGraph &Graph, unsigned DisplayNode,
1491 DotCfgDiffDisplayGraph createDisplayGraph(StringRef Title,
1688 DotCfgDiffDisplayGraph DotCfgDiff::createDisplayGraph(StringRef Title, in createDisplayGraph()
1694 DotCfgDiffDisplayGraph G(Title.str()); in createDisplayGraph()
1718 DotCfgDiffDisplayGraph &DisplayGraph, unsigned DisplayNodeIndex, in createDisplayEdges()
1746 template <> struct GraphTraits<DotCfgDiffDisplayGraph *> {
1749 using nodes_iterator = DotCfgDiffDisplayGraph::NodeIterator;
1753 static NodeRef getEntryNode(const DotCfgDiffDisplayGraph *G) { in getEntryNode()
1760 static nodes_iterator nodes_begin(const DotCfgDiffDisplayGraph *G) { in nodes_begin()
1763 static nodes_iterator nodes_end(const DotCfgDiffDisplayGraph *G) { in nodes_end()
1771 static unsigned size(const DotCfgDiffDisplayGraph *G) { return G->size(); } in size()
1775 struct DOTGraphTraits<DotCfgDiffDisplayGraph *> : public DefaultDOTGraphTraits {
1780 static std::string getGraphName(const DotCfgDiffDisplayGraph *DiffData) { in getGraphName()
1784 getGraphProperties(const DotCfgDiffDisplayGraph *DiffData) { in getGraphProperties()
1788 const DotCfgDiffDisplayGraph *DiffData) { in getNodeLabel()
1792 const DotCfgDiffDisplayGraph *DiffData) { in getNodeAttributes()
1801 const DotCfgDiffDisplayGraph *DiffData) { in getEdgeAttributes()
1810 void DotCfgDiffDisplayGraph::generateDotFile(StringRef DotFile) { in generateDotFile()
1885 DotCfgDiffDisplayGraph DG = Diff.createDisplayGraph(Text, EntryBlockName); in handleFunctionCompare()