Searched refs:longestMatching (Results 1 – 2 of 2) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/ |
| D | MonitorCommands.cs | 491 string longestMatching; in TryFindPeripheralTypeByName() 494 var ret = currentMachine.TryGetByName(name, out peripheral, out longestMatching); in TryFindPeripheralTypeByName() 495 longestMatch = longestMatching; in TryFindPeripheralTypeByName() 502 … if(longestMatching.Split('.').Length < currentMatch.Split('.').Length - prefix.Split('.').Length) in TryFindPeripheralTypeByName() 504 longestMatching = currentMatch; in TryFindPeripheralTypeByName() 514 longestMatch = longestPrefix + longestMatching; in TryFindPeripheralTypeByName() 532 string longestMatching; in TryFindPeripheralByName() 535 var ret = currentMachine.TryGetByName(name, out peripheral, out longestMatching); in TryFindPeripheralByName() 536 longestMatch = longestMatching; in TryFindPeripheralByName() 543 … if(longestMatching.Split('.').Length < currentMatch.Split('.').Length - prefix.Split('.').Length) in TryFindPeripheralByName() [all …]
|
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Core/ |
| D | Machine.cs | 1458 string currentMatching, out string longestMatching) in TryFindSubnodeByName() argument 1464 longestMatching = currentMatching; in TryFindSubnodeByName() 1480 …(currentChild, subpath[1], out subnode, Subname(currentMatching, subpath[0]), out longestMatching); in TryFindSubnodeByName() 1490 string longestMatching; in GetByName() 1491 if(!TryGetByName(path, out result, out longestMatching)) in GetByName() 1494 … "Could not find node '{0}', the longest matching was '{1}'.", path, longestMatching)); in GetByName()
|