Home
last modified time | relevance | path

Searched refs:GetAllForLeft (Results 1 – 3 of 3) sorted by relevance

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/Collections/
DWeakMultiTableTest.cs23 Assert.AreEqual(2, table.GetAllForLeft(0).Count()); in ShouldHandleManyRightValuesForLeft()
42 Assert.AreEqual(1, table.GetAllForLeft(0).Count()); in ShouldRemovePair()
43 Assert.AreEqual(1, table.GetAllForLeft(1).Count()); in ShouldRemovePair()
47 Assert.AreEqual(0, table.GetAllForLeft(0).Count()); in ShouldRemovePair()
48 Assert.AreEqual(1, table.GetAllForLeft(1).Count()); in ShouldRemovePair()
56 Assert.AreEqual(0, table.GetAllForLeft(0).Count()); in ShouldHandleRemoveOfUnexistingItem()
58 Assert.AreEqual(0, table.GetAllForLeft(0).Count()); in ShouldHandleRemoveOfUnexistingItem()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/
DConnector.cs71 return connections.GetAllForLeft(obj).ToList(); in GetObjectsConnectedTo()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/Collections/
DWeakMultiTable.cs33 public IEnumerable<TRight> GetAllForLeft(TLeft left) in GetAllForLeft() method in Antmicro.Renode.Utilities.Collections.WeakMultiTable