Lines Matching refs:_rValue

229 …throwIllegalPropertyValueTypeException( const PropertyDescription& _rProperty, const Any& _rValue )  in lcl_throwIllegalPropertyValueTypeException()  argument
236 aErrorMessage.append( _rValue.getValueType().getTypeName() ); in lcl_throwIllegalPropertyValueTypeException()
246 …Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue ) SAL_THROW( (Illeg… in convertFastPropertyValue() argument
270 Any aNewRequestedValue( _rValue ); in convertFastPropertyValue()
300 lcl_throwIllegalPropertyValueTypeException( *aPos, _rValue ); in convertFastPropertyValue()
342 const Any* pNewValue = &_rValue; in convertFastPropertyValue()
344 if (!_rValue.getValueType().equals(aPos->aProperty.Type)) in convertFastPropertyValue()
354 const_cast<void*>(_rValue.getValue()), _rValue.getValueType().getTypeLibType(), in convertFastPropertyValue()
367 lcl_throwIllegalPropertyValueTypeException( *aPos, _rValue ); in convertFastPropertyValue()
392 void OPropertyContainerHelper::setFastPropertyValue(sal_Int32 _nHandle, const Any& _rValue) SAL_THR… in setFastPropertyValue() argument
407 m_aHoldProperties[aPos->aLocation.nOwnClassVectorIndex] = _rValue; in setFastPropertyValue()
411 *reinterpret_cast< Any* >(aPos->aLocation.pDerivedClassMember) = _rValue; in setFastPropertyValue()
421 const_cast< void* >( _rValue.getValue() ), _rValue.getValueType().getTypeLibType(), in setFastPropertyValue()
434 void OPropertyContainerHelper::getFastPropertyValue(Any& _rValue, sal_Int32 _nHandle) const in getFastPropertyValue() argument
451 _rValue = m_aHoldProperties[aPos->aLocation.nOwnClassVectorIndex]; in getFastPropertyValue()
454 _rValue = *reinterpret_cast<Any*>(aPos->aLocation.pDerivedClassMember); in getFastPropertyValue()
457 _rValue.setValue(aPos->aLocation.pDerivedClassMember, aPos->aProperty.Type); in getFastPropertyValue()