Lines Matching refs:aProperty

54 			return x.aProperty.Handle < y.aProperty.Handle;  in operator ()()
62 return x.aProperty.Handle < y; in operator ()()
66 return x < y.aProperty.Handle; in operator ()()
77 return x.aProperty.Name.equals(m_rCompare); in operator ()()
108 aNewProp.aProperty = Property( _rName, _nHandle, _rMemberType, (sal_Int16)_nAttributes ); in registerProperty()
138 aNewProp.aProperty = Property( _rName, _nHandle, _rExpectedType, (sal_Int16)_nAttributes ); in registerMayBeVoidProperty()
156 aNewProp.aProperty = Property( _rName, _nHandle, _rType, (sal_Int16)_nAttributes ); in registerPropertyNoMember()
196 return _rLHS.aProperty.Handle < _nRHS; in operator ()()
200 return _nLHS < _rRHS.aProperty.Handle; in operator ()()
214 …OSL_ENSURE(checkConflicts->aProperty.Name != _rProp.aProperty.Name, "OPropertyContainerHelper::imp… in implPushBackProperty()
215 …OSL_ENSURE(checkConflicts->aProperty.Handle != _rProp.aProperty.Handle, "OPropertyContainerHelper:… in implPushBackProperty()
221 _rProp.aProperty.Handle, ComparePropertyWithHandle() ); in implPushBackProperty()
234 aErrorMessage.append( _rProperty.aProperty.Name ); in lcl_throwIllegalPropertyValueTypeException()
238 aErrorMessage.append( _rProperty.aProperty.Type.getTypeName() ); in lcl_throwIllegalPropertyValueTypeException()
266 sal_Bool bMayBeVoid = ((aPos->aProperty.Attributes & PropertyAttribute::MAYBEVOID) != 0); in convertFastPropertyValue()
275 if ( !aNewRequestedValue.getValueType().equals( aPos->aProperty.Type ) ) in convertFastPropertyValue()
277 Any aProperlyTyped( NULL, aPos->aProperty.Type.getTypeLibType() ); in convertFastPropertyValue()
296 …|| (aNewRequestedValue.getValueType().equals(aPos->aProperty.Type)) // else the types have to be e… in convertFastPropertyValue()
322 … const_cast< void* >( pPropContainer->getValue() ), aPos->aProperty.Type.getTypeLibType(), in convertFastPropertyValue()
323 … const_cast< void* >( aNewRequestedValue.getValue() ), aPos->aProperty.Type.getTypeLibType(), in convertFastPropertyValue()
344 if (!_rValue.getValueType().equals(aPos->aProperty.Type)) in convertFastPropertyValue()
349 aProperlyTyped = Any( NULL, aPos->aProperty.Type.getTypeLibType() ); in convertFastPropertyValue()
371 OSL_ENSURE( pNewValue->getValueType() == aPos->aProperty.Type, in convertFastPropertyValue()
374 … aPos->aLocation.pDerivedClassMember, aPos->aProperty.Type.getTypeLibType(), in convertFastPropertyValue()
375 … const_cast<void*>(pNewValue->getValue()), aPos->aProperty.Type.getTypeLibType(), in convertFastPropertyValue()
382 _rOldValue.setValue(aPos->aLocation.pDerivedClassMember, aPos->aProperty.Type); in convertFastPropertyValue()
420 aPos->aLocation.pDerivedClassMember, aPos->aProperty.Type.getTypeLibType(), in setFastPropertyValue()
457 _rValue.setValue(aPos->aLocation.pDerivedClassMember, aPos->aProperty.Type); in getFastPropertyValue()
473 if ((aLowerBound != m_aProperties.end()) && aLowerBound->aProperty.Handle != _nHandle) in searchHandle()
490 return pos->aProperty; in getProperty()
505 aPos->aProperty.Handle |= _nAddAttrib; in modifyAttributes()
506 aPos->aProperty.Handle &= ~_nRemoveAttrib; in modifyAttributes()
520 pOwnProps->Name = aLoop->aProperty.Name; in describeProperties()
521 pOwnProps->Handle = aLoop->aProperty.Handle; in describeProperties()
522 pOwnProps->Attributes = (sal_Int16)aLoop->aProperty.Attributes; in describeProperties()
523 pOwnProps->Type = aLoop->aProperty.Type; in describeProperties()