Home
last modified time | relevance | path

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

/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/Utilities/
DMonitorInfo.cs18 public IEnumerable<MethodInfo> Methods{get;set;} property in Antmicro.Renode.Utilities.MonitorInfo
32 if (Methods != null)
34 names.AddRange(Methods.Select(x => x.Name));
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Utilities/
DTypeManager.cs186 …return foundPeripherals.Where(td => td.IsClass && !td.IsAbstract && td.Methods.Any(m => m.IsConstr… in GetAvailablePeripherals()
199 td.Methods.Any(m => m.IsConstructor && m.IsPublic) && in GetAvailablePeripherals()
416 foreach(var method in type.Methods) in TryExtractExtensionMethods()
/Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Extensions/UserInterface/
DMonitorCommands.cs580 if(info.Methods != null && info.Methods.Any(x => lookup == null || x.Name == lookup)) in PrintMonitorInfo()
584 foreach(var method in info.Methods.Where(x=> lookup == null || x.Name==lookup)) in PrintMonitorInfo()
805 info.Methods = methodsAndExtensions.OrderBy(x => x.Name); in GetMonitorInfo()