Home
last modified time | relevance | path

Searched refs:propDesc (Results 1 – 25 of 96) sorted by relevance

1234

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/compmod/system/componentmodel/
H A DListChangedEventArgs.cs27 private PropertyDescriptor propDesc; field in System.ComponentModel.ListChangedEventArgs
38 …tArgs(ListChangedType listChangedType, int newIndex, PropertyDescriptor propDesc) : this(listChang… in ListChangedEventArgs() argument
39 this.propDesc = propDesc; in ListChangedEventArgs()
46 public ListChangedEventArgs(ListChangedType listChangedType, PropertyDescriptor propDesc) { in ListChangedEventArgs() argument
53 this.propDesc = propDesc; in ListChangedEventArgs()
100 return propDesc;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/
H A DMobileControlPersister.cs130 sw.Write(propDesc.Name); in PersistCollectionProperty()
218 sw.Write(propDesc.Name); in PersistCollectionProperty()
244 object propValue = propDesc.GetValue(component); in PersistComplexProperty()
264 sw.Write(propDesc.Name); in PersistComplexProperty()
273 if (!propDesc.Name.Equals("DeviceSpecific")) in PersistComplexProperty()
281 sw.Write(propDesc.Name); in PersistComplexProperty()
452 "Invalid string property : " + propDesc.Name); in PersistStringProperty()
456 object propValue = propDesc.GetValue(component); in PersistStringProperty()
491 if (propDesc != null) { in PersistAttributes()
492 value = propDesc.GetValue(component); in PersistAttributes()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/Compilation/
H A DAppSettingsExpressionBuilder.cs65 … PropertyDescriptor propDesc = TypeDescriptor.GetProperties(targetType)[propertyName]; in GetAppSetting()
66 if (propDesc != null) { in GetAppSetting()
67 if (propDesc.PropertyType != typeof(string)) { in GetAppSetting()
68 TypeConverter converter = propDesc.Converter; in GetAppSetting()
73 …eption(SR.GetString(SR.AppSetting_not_convertible, value, propDesc.PropertyType.Name, propDesc.Nam… in GetAppSetting()
H A DRouteValueExpressionBuilder.cs54 … PropertyDescriptor propDesc = TypeDescriptor.GetProperties(controlType)[propertyName]; in ConvertRouteValue()
55 if (propDesc != null) { in ConvertRouteValue()
56 if (propDesc.PropertyType != typeof(string)) { in ConvertRouteValue()
57 TypeConverter converter = propDesc.Converter; in ConvertRouteValue()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Entity.Design/System/Data/WebControls/Design/
H A DEntityDataSourceStatementEditor.cs206 PropertyDescriptor propDesc = null; in Initialize()
210 propDesc = TypeDescriptor.GetProperties(entityDataSource)[autoGenProperty]; in Initialize()
211 propDesc.ResetValue(entityDataSource); in Initialize()
212 propDesc.SetValue(entityDataSource, form.AutoGen); in Initialize()
217 propDesc = TypeDescriptor.GetProperties(entityDataSource)[propertyName]; in Initialize()
218 propDesc.ResetValue(entityDataSource); in Initialize()
219 propDesc.SetValue(entityDataSource, form.Statement); in Initialize()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.ComponentModel.TypeConverter/src/System/ComponentModel/
H A DListChangedEventArgs.cs29 …tArgs(ListChangedType listChangedType, int newIndex, PropertyDescriptor propDesc) : this(listChang… in ListChangedEventArgs() argument
31 PropertyDescriptor = propDesc; in ListChangedEventArgs()
38 public ListChangedEventArgs(ListChangedType listChangedType, PropertyDescriptor propDesc) in ListChangedEventArgs() argument
46 PropertyDescriptor = propDesc; in ListChangedEventArgs()
/dports/graphics/rigsofrods-caelum/ogre-caelum-0.6.3/main/src/
H A DCaelumScriptTranslator.cpp289 void* targetObject, const ValuePropertyDescriptor* propDesc) in tryHandlePropertyType() argument
291 if (propDesc->getValueTypeId () == typeid(T)) { in tryHandlePropertyType()
294 propDesc->setValue (targetObject, Ogre::Any(val)); in tryHandlePropertyType()
308 if (!propDesc) { in translateProperty()
313 if (!propDesc->canSetValue ()) { in translateProperty()
323 || tryHandlePropertyType<int> (compiler, prop, targetObject, propDesc) in translateProperty()
324 || tryHandlePropertyType<float> (compiler, prop, targetObject, propDesc) in translateProperty()
325 || tryHandlePropertyType<double> (compiler, prop, targetObject, propDesc) in translateProperty()
326 || tryHandlePropertyType<bool> (compiler, prop, targetObject, propDesc) in translateProperty()
327 || tryHandlePropertyType<Ogre::Degree> (compiler, prop, targetObject, propDesc) in translateProperty()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/
H A DComponentSerializationService.cs514 foreach (PropertyDescriptor propDesc in props) in GetProperties()
526 properties.Add(new PropertySegmentPropertyInfo(this, propDesc)); in GetProperties()
527 if (propDesc.Converter != null) in GetProperties()
530 if (propDesc.Converter.GetPropertiesSupported(dummyContext)) in GetProperties()
532 …foreach (PropertyDescriptor childDesc in propDesc.Converter.GetProperties(dummyContext, this.obj, … in GetProperties()
707 foreach (PropertyDescriptor propDesc in props) in SetValue()
709 if (propDesc.Name == propertyName) in SetValue()
711 propertyDescriptor = propDesc; in SetValue()
713 else if (propDesc.Converter != null) in SetValue()
716 …if (propDesc.GetValue(propertySegment.Object) != null && propDesc.Converter.GetPropertiesSupported… in SetValue()
[all …]
H A DPropertyDescriptors.cs182 PropertyDescriptor propDesc = properties[key] as PropertyDescriptor; in InternalFilterProperties()
183 …if (string.Equals(propDesc.Name, "Name", StringComparison.Ordinal) && typeof(Activity).IsAssignabl… in InternalFilterProperties()
188 newProperties[key] = new NamePropertyDescriptor(serviceProvider, propDesc); in InternalFilterProperties()
190 newProperties[key] = new IDPropertyDescriptor(serviceProvider, propDesc); in InternalFilterProperties()
192 …else if (!(propDesc is ActivityBindPropertyDescriptor) && ActivityBindPropertyDescriptor.IsBindabl… in InternalFilterProperties()
194 …if (typeof(Type).IsAssignableFrom(propDesc.PropertyType) && !(propDesc is ParameterInfoBasedProper… in InternalFilterProperties()
195 propDesc = new TypePropertyDescriptor(serviceProvider, propDesc); in InternalFilterProperties()
196 … newProperties[key] = new ActivityBindPropertyDescriptor(serviceProvider, propDesc, propertyOwner); in InternalFilterProperties()
198 else if (typeof(Type).IsAssignableFrom(propDesc.PropertyType)) in InternalFilterProperties()
200 newProperties[key] = new TypePropertyDescriptor(serviceProvider, propDesc); in InternalFilterProperties()
[all …]
H A DXomlDesignerLoader.cs872 …opertyGridAdornments(ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueU… in OnPropertyGridAdornments() argument
882 …DefaultPropertyAttribute aliasPropertyNameAttribute = propDesc.Attributes[typeof(DefaultPropertyAt… in OnPropertyGridAdornments()
884 fullAliasName = propDesc.Name + "." + aliasPropertyNameAttribute.Name; in OnPropertyGridAdornments()
891 …er.IsLocked && ActivityBindPropertyDescriptor.IsBindableProperty(propDesc) && !propDesc.IsReadOnly) in OnPropertyGridAdornments()
896 …th + 1, fullPropertyName.Length - fullComponentName.Length - 1) + "." + propDesc.Name : string.Emp… in OnPropertyGridAdornments()
904 …if (actionPropertyName == propDesc.Name || (actionPropertyName == fullPropertyName) || (actionProp… in OnPropertyGridAdornments()
/dports/www/nextcloud/nextcloud/3rdparty/icewind/searchdav/src/XML/
H A DBasicSearchSchema.php42 $childs = array_map(function(PropDesc $propDesc) {
45 'value' => $propDesc
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/framework/vulkan/
H A DvkDeviceProperties.hpp130 const PropertyDesc propDesc = makePropertyDesc<PropertyType>(); in getPropertyType() local
131 const VkStructureType sType = propDesc.sType; in getPropertyType()
141 const deUint32 propertyId = propDesc.typeId; in getPropertyType()
/dports/sysutils/rsyslog8/rsyslog-8.2112.0/contrib/mmdarwin/
H A Dmmdarwin.c310 msgPropDescr_t propDesc; in get_field() local
311 msgPropDescrFill(&propDesc, (uchar *)pFieldName, strlen(pFieldName)); in get_field()
312 msgGetJSONPropJSONorString(pMsg, &propDesc, &pJson, (uchar **)&pFieldString); in get_field()
332 msgPropDescrDestruct(&propDesc); in get_field()
490 msgPropDescr_t propDesc; in get_uuid_object() local
491 msgPropDescrFill(&propDesc, (uchar *)runModConf->container, strlen(runModConf->container)); in get_uuid_object()
492 msgGetJSONPropJSON(pMsg, &propDesc, &mmdarwin_object); in get_uuid_object()
512 msgPropDescrDestruct(&propDesc); in get_uuid_object()
/dports/java/apache-commons-beanutils/commons-beanutils-1.9.4-src/src/test/java/org/apache/commons/beanutils/bugs/
H A DJira492TestCase.java112 PropertyDescriptor propDesc = propertyUtils.getPropertyDescriptor(bean, "someList"); in getPropertyDescriptor() local
115 IndexedPropertyDescriptor indexed = (IndexedPropertyDescriptor) propDesc; in getPropertyDescriptor()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web.Mobile/UI/MobileControls/Design/Converters/
H A DDataFieldConverter.cs194 foreach (PropertyDescriptor propDesc in props) in GetStandardValues()
196 list.Add(propDesc.Name); in GetStandardValues()
/dports/java/icedtea-web/icedtea-web-1.6.2/netx/net/sourceforge/jnlp/runtime/
H A DApplicationInstance.java277 for (PropertyDesc propDesc : props) { in installEnvironment()
278 System.setProperty(propDesc.getKey(), propDesc.getValue()); in installEnvironment()
H A DBoot.java141 PropertyDesc propDesc = PropertyDesc.fromString(prop); in main() local
142 … JNLPRuntime.getConfiguration().setProperty(propDesc.getKey(), propDesc.getValue()); in main()
/dports/databases/kexi/kexi-3.2.0/src/formeditor/
H A Dwidgetfactory.cpp84 QHash<QByteArray, QString> propDesc; member in WidgetFactory::Private
332 return d->propDesc.value(name); in propertyDescription()
372 d->propDesc.insert(property, description); in setPropertyDescription()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.Design/System.Web.UI.Design/
H A DDataBindingValueUIHandler.cs43 …public void OnGetUIValueItem (ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayLi… in OnGetUIValueItem() argument
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Drawing.Common/src/System/Drawing/Design/
H A DPropertyValueUIHandler.cs22 …opertyValueUIHandler(ITypeDescriptorContext context, PropertyDescriptor propDesc, ArrayList valueU… in PropertyValueUIHandler() argument
H A DIPropertyValueUIService.cs51 …ValueUIItem[] GetPropertyUIValueItems(ITypeDescriptorContext context, PropertyDescriptor propDesc); in GetPropertyUIValueItems() argument
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/javax/swing/
H A DTransferHandler.java392 PropertyDescriptor propDesc = getPropertyDescriptor(c); in canImport() local
394 if (propDesc != null) in canImport()
398 Method writer = propDesc.getWriteMethod(); in canImport()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/javax/swing/
H A DTransferHandler.java392 PropertyDescriptor propDesc = getPropertyDescriptor(c); in canImport() local
394 if (propDesc != null) in canImport()
398 Method writer = propDesc.getWriteMethod(); in canImport()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/javax/swing/
H A DTransferHandler.java392 PropertyDescriptor propDesc = getPropertyDescriptor(c); in canImport() local
394 if (propDesc != null) in canImport()
398 Method writer = propDesc.getWriteMethod(); in canImport()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/javax/swing/
H A DTransferHandler.java392 PropertyDescriptor propDesc = getPropertyDescriptor(c); in canImport() local
394 if (propDesc != null) in canImport()
398 Method writer = propDesc.getWriteMethod(); in canImport()

1234