Lines Matching refs:_nHandle

206 			::rtl::OUString* _pPropName, sal_Int16* _pAttributes, sal_Int32 _nHandle)  in fillPropertyMembersByHandle()  argument
208 ConstPropertyAccessorMapIterator i = m_aPropertyAccessors.find(_nHandle); in fillPropertyMembersByHandle()
222 sal_Bool OPropertyArrayAggregationHelper::getPropertyByHandle( sal_Int32 _nHandle, Property& _rProp… in getPropertyByHandle() argument
224 ConstPropertyAccessorMapIterator pos = m_aPropertyAccessors.find(_nHandle); in getPropertyByHandle()
235 ::rtl::OUString* _pPropName, sal_Int32* _pOriginalHandle, sal_Int32 _nHandle) const in fillAggregatePropertyInfoByHandle()
237 ConstPropertyAccessorMapIterator i = m_aPropertyAccessors.find(_nHandle); in fillAggregatePropertyInfoByHandle()
379 void takeResponsibilityFor( sal_Int32 _nHandle );
383 bool isResponsibleFor( sal_Int32 _nHandle );
386 void doForward( sal_Int32 _nHandle, const Any& _rValue ) throw ( Exception );
404 void PropertyForwarder::takeResponsibilityFor( sal_Int32 _nHandle ) in takeResponsibilityFor() argument
406 m_aProperties.insert( _nHandle ); in takeResponsibilityFor()
410 bool PropertyForwarder::isResponsibleFor( sal_Int32 _nHandle ) in isResponsibleFor() argument
412 return m_aProperties.find( _nHandle ) != m_aProperties.end(); in isResponsibleFor()
416 void PropertyForwarder::doForward( sal_Int32 _nHandle, const Any& _rValue ) throw ( Exception ) in doForward() argument
421 m_rAggregationHelper.forwardingPropertyValue( _nHandle ); in doForward()
424 m_nCurrentlyForwarding = _nHandle; in doForward()
428 …per.m_xAggregateSet->setPropertyValue( m_rAggregationHelper.getPropertyName( _nHandle ), _rValue ); in doForward()
433 m_rAggregationHelper.forwardedPropertyValue( _nHandle, false ); in doForward()
439 m_rAggregationHelper.forwardedPropertyValue( _nHandle, true ); in doForward()
643 ::rtl::OUString OPropertySetAggregationHelper::getPropertyName( sal_Int32 _nHandle ) const in getPropertyName()
647 OSL_VERIFY( rPH.getPropertyByHandle( _nHandle, aProperty ) ); in getPropertyName()
652 void SAL_CALL OPropertySetAggregationHelper::setFastPropertyValue(sal_Int32 _nHandle, const ::com:… in setFastPropertyValue() argument
662 if (rPH.fillAggregatePropertyInfoByHandle(&aPropName, &nOriginalHandle, _nHandle)) in setFastPropertyValue()
668 OPropertySetHelper::setFastPropertyValue(_nHandle, _rValue); in setFastPropertyValue()
987 …ertFastPropertyValue( Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rVal… in convertFastPropertyValue() argument
991 …OSL_ENSURE( m_pForwarder->isResponsibleFor( _nHandle ), "OPropertySetAggregationHelper::convertFas… in convertFastPropertyValue()
992 if ( m_pForwarder->isResponsibleFor( _nHandle ) ) in convertFastPropertyValue()
997 OSL_VERIFY( rPH.getPropertyByHandle( _nHandle, aProperty ) ); in convertFastPropertyValue()
1000 getFastPropertyValue( aCurrentValue, _nHandle ); in convertFastPropertyValue()
1008 void SAL_CALL OPropertySetAggregationHelper::setFastPropertyValue_NoBroadcast( sal_Int32 _nHandle, … in setFastPropertyValue_NoBroadcast() argument
1010 …OSL_ENSURE( m_pForwarder->isResponsibleFor( _nHandle ), "OPropertySetAggregationHelper::setFastPro… in setFastPropertyValue_NoBroadcast()
1011 if ( m_pForwarder->isResponsibleFor( _nHandle ) ) in setFastPropertyValue_NoBroadcast()
1012 m_pForwarder->doForward( _nHandle, _rValue ); in setFastPropertyValue_NoBroadcast()
1016 void OPropertySetAggregationHelper::declareForwardedProperty( sal_Int32 _nHandle ) in declareForwardedProperty() argument
1018 …OSL_ENSURE( !m_pForwarder->isResponsibleFor( _nHandle ), "OPropertySetAggregationHelper::declareFo… in declareForwardedProperty()
1019 m_pForwarder->takeResponsibilityFor( _nHandle ); in declareForwardedProperty()
1035 bool OPropertySetAggregationHelper::isCurrentlyForwardingProperty( sal_Int32 _nHandle ) const in isCurrentlyForwardingProperty()
1037 return m_pForwarder->getCurrentlyForwardedProperty() == _nHandle; in isCurrentlyForwardingProperty()