Searched refs:GraphNode (Results 1 – 1 of 1) sorted by relevance
/Renode-v1.15.3-c57714d/src/Renode/PlatformDescription/ |
D | UsingsGraph.cs | 23 usingsMap = new Dictionary<string, GraphNode>(); in UsingsGraph() 32 var nodesToProcess = new Stack<GraphNode>(); in TraverseDepthFirst() 34 var graphNodeFinished = new Dictionary<GraphNode, bool>(); in TraverseDepthFirst() 37 … GraphNode rootNode = GetOrCreateGraphNode(creationDriver, rootFilePath, rootFileSource, "", null); in TraverseDepthFirst() 60 … GraphNode node = GetOrCreateGraphNode(creationDriver, filePath, "", prefix, currentFile); in TraverseDepthFirst() 100 …private GraphNode GetOrCreateGraphNode(CreationDriver creationDriver, string filePath, string sour… in GetOrCreateGraphNode() 102 …if(!usingsMap.TryGetValue(GraphNode.MakeGraphId(parent?.GraphId ?? "", prefix, filePath), out var … in GetOrCreateGraphNode() 109 …private GraphNode CreateGraphNode(CreationDriver creationDriver, string filePath, string source, s… in CreateGraphNode() 125 var node = new GraphNode(filePath, source, prefix, description, parent); in CreateGraphNode() 142 private class GraphNode class in Antmicro.Renode.PlatformDescription.CreationDriver.UsingsGraph [all …]
|