Lines Matching refs:nHandle

102 void PropertySetBase::notifyAndCachePropertyValue( sal_Int32 nHandle )  in notifyAndCachePropertyValue()  argument
106 PropertyValueCache::iterator aPos = m_aCache.find( nHandle ); in notifyAndCachePropertyValue()
114 … OSL_VERIFY( rPropertyMetaData.fillPropertyMembersByHandle( &sPropName, NULL, nHandle ) ); in notifyAndCachePropertyValue()
119 aPos = m_aCache.insert( PropertyValueCache::value_type( nHandle, aEmptyValue ) ).first; in notifyAndCachePropertyValue()
129 getFastPropertyValue( aNewValue, nHandle ); in notifyAndCachePropertyValue()
135 firePropertyChange( nHandle, aNewValue, aOldValue ); in notifyAndCachePropertyValue()
138 void PropertySetBase::initializePropertyValueCache( sal_Int32 nHandle ) in initializePropertyValueCache() argument
141 getFastPropertyValue( aCurrentValue, nHandle ); in initializePropertyValueCache()
146 m_aCache.insert( PropertyValueCache::value_type( nHandle, aCurrentValue ) ); in initializePropertyValueCache()
150 PropertyAccessorBase& PropertySetBase::locatePropertyHandler( sal_Int32 nHandle ) const in locatePropertyHandler()
152 PropertyAccessors::const_iterator aPropertyPos = m_aAccessors.find( nHandle ); in locatePropertyHandler()
160 …PropertySetBase::convertFastPropertyValue( Any& rConvertedValue, Any& rOldValue, sal_Int32 nHandle, in convertFastPropertyValue() argument
164 PropertyAccessorBase& rAccessor = locatePropertyHandler( nHandle ); in convertFastPropertyValue()
177 void SAL_CALL PropertySetBase::setFastPropertyValue_NoBroadcast( sal_Int32 nHandle, const Any& rVal… in setFastPropertyValue_NoBroadcast() argument
180 PropertyAccessorBase& rAccessor = locatePropertyHandler( nHandle ); in setFastPropertyValue_NoBroadcast()
184 void SAL_CALL PropertySetBase::getFastPropertyValue( Any& rValue, sal_Int32 nHandle ) const in getFastPropertyValue()
186 PropertyAccessorBase& rAccessor = locatePropertyHandler( nHandle ); in getFastPropertyValue()