Searched refs:GetNode (Results 1 – 4 of 4) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/Collections/ |
| D | MultiTreeTests.cs | 61 Assert.AreEqual(1, tree.GetNode(1).Value); in ShouldFindRoot() 85 Assert.Throws(typeof(KeyNotFoundException), () => tree.GetNode(2)); in ShouldRemoveSubtreeFromDictionary() 86 Assert.Throws(typeof(KeyNotFoundException), () => tree.GetNode(3)); in ShouldRemoveSubtreeFromDictionary() 87 Assert.Throws(typeof(KeyNotFoundException), () => tree.GetNode(4)); in ShouldRemoveSubtreeFromDictionary() 88 tree.GetNode(5); in ShouldRemoveSubtreeFromDictionary()
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/ |
| D | MultiTreeNode.cs | 48 var childNode = root.GetNode(value); in GetConnectionWays() 71 var nodeToRemove = root.GetNode(value); in RemoveChild()
|
| D | MultiTree.cs | 23 public MultiTreeNode<TValue, TConnectionWay> GetNode(TValue value) in GetNode() method in Antmicro.Renode.Utilities.Collections.MultiTree
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | Machine.cs | 155 var parentNode = registeredPeripherals.GetNode(peripheralParent); in UnregisterAsAChildOf() 169 var parentNode = registeredPeripherals.GetNode(peripheralParent); in UnregisterAsAChildOf() 254 …if(TryFindSubnodeByName(registeredPeripherals.GetNode(SystemBus), splitPath[1], out result, System… 1417 var parentNode = registeredPeripherals.GetNode(parent); in Register() 1523 … FindPaths(SystemBusName, peripheral, registeredPeripherals.GetNode(SystemBus), paths); in GetNames() 1754 registeredPeripherals.GetNode(parent).ReplaceConnectionWay(oldPoint, newPoint); in ExchangeRegistrationPointForPeripheral()
|