Lines Matching refs:p

216         Property p = ((PropertyData) properties.get(propertyName)).property;  in prepareSet()  local
223 if ((p.Attributes & PropertyAttribute.CONSTRAINED) != 0) { in prepareSet()
233 if ((p.Attributes & PropertyAttribute.BOUND) != 0) { in prepareSet()
245 if ((p.Attributes & PropertyAttribute.CONSTRAINED) != 0) { in prepareSet()
247 object, propertyName, false, p.Handle, oldValue, newValue); in prepareSet()
265 if ((p.Attributes & PropertyAttribute.BOUND) != 0) { in prepareSet()
268 object, propertyName, false, p.Handle, oldValue, newValue); in prepareSet()
724 PropertyData p = (PropertyData) properties.get(name); in setProperty() local
725 if (p == null) { in setProperty()
729 && (p.property.Attributes & PropertyAttribute.MAYBEAMBIGUOUS) == 0) in setProperty()
731 && ((p.property.Attributes & PropertyAttribute.MAYBEDEFAULT) in setProperty()
748 (p.property.Attributes & PropertyAttribute.MAYBEAMBIGUOUS) != 0, in setProperty()
750 (p.property.Attributes & PropertyAttribute.MAYBEDEFAULT) != 0, in setProperty()
752 (p.property.Attributes & PropertyAttribute.MAYBEVOID) != 0); in setProperty()
776 && (p.property.Attributes & PropertyAttribute.OPTIONAL) != 0) in setProperty()
781 && ((p.property.Attributes in setProperty()
796 PropertyData p = (PropertyData) properties.get(name); in getProperty() local
797 if (p == null) { in getProperty()
817 && (p.property.Attributes & PropertyAttribute.OPTIONAL) != 0) in getProperty()
826 = (p.property.Attributes & PropertyAttribute.MAYBEAMBIGUOUS) != 0; in getProperty()
828 = (p.property.Attributes & PropertyAttribute.MAYBEDEFAULT) != 0; in getProperty()
830 = (p.property.Attributes & PropertyAttribute.MAYBEVOID) != 0; in getProperty()
1020 PropertyData p = (PropertyData) properties.get(propertyName); in get() local
1021 if (p == null || !p.present) { in get()
1024 return p; in get()
1054 PropertyData p = (PropertyData) i.next(); in getProperties() local
1055 if (p.present) { in getProperties()
1056 al.add(p.property); in getProperties()
1069 PropertyData p = (PropertyData) properties.get(name); in hasPropertyByName() local
1070 return p != null && p.present; in hasPropertyByName()