Searched refs:objectType (Results 1 – 2 of 2) sorted by relevance
59 var objectType = objectToVisit.GetType(); field in Antmicro.Renode.PlatformDescription.Syntax.SyntaxTreeHelpers.__anon360 var publicProperties = objectType.GetProperties();
751 var objectType = objectToSetOn.GetType(); in SetPropertiesAndConnectInterrupts()795 …source = (IGPIO)GetGpioProperties(objectType).Single(x => x.Name == irqEnd.PropertyName).GetValue(… in SetPropertiesAndConnectInterrupts()1037 private void ValidateAttributePreMerge(Type objectType, Syntax.Attribute syntaxAttribute) in ValidateAttributePreMerge() argument1046 var propertyInfo = objectType.GetProperty(name); in ValidateAttributePreMerge()1054 …t("Property '{0}' does not exist in type '{1}.", ctorOrPropertyAttribute.Name, objectType), false); in ValidateAttributePreMerge()1102 var gpioProperties = GetGpioProperties(objectType).ToArray(); in ValidateAttributePreMerge()1107 … string.Format("Type '{0}' does not contain any property of type GPIO.", objectType), false); in ValidateAttributePreMerge()1150 var gpioProperty = objectType.GetProperty(end.PropertyName); in ValidateAttributePreMerge()1154 …y '{0}' does not exist in '{1}' or is not of the GPIO type.", end.PropertyName, objectType), true); in ValidateAttributePreMerge()1159 if(!typeof(INumberedGPIOOutput).IsAssignableFrom(objectType)) in ValidateAttributePreMerge()[all …]