Lines Matching refs:nHandle

256 	sal_Int32 nHandle = rPH.getHandleByName( rPropertyName );  in setPropertyValue()  local
258 setFastPropertyValue( nHandle, rValue ); in setPropertyValue()
269 sal_Int32 nHandle = rPH.getHandleByName( rPropertyName ); in getPropertyValue() local
271 return getFastPropertyValue( nHandle ); in getPropertyValue()
294 sal_Int32 nHandle = rPH.getHandleByName( rPropertyName ); in addPropertyChangeListener() local
295 if( nHandle == -1 ) { in addPropertyChangeListener()
301 rPH.fillPropertyMembersByHandle( NULL, &nAttributes, nHandle ); in addPropertyChangeListener()
310 aBoundLC.addInterface( (sal_Int32)nHandle, rxListener ); in addPropertyChangeListener()
340 sal_Int32 nHandle = rPH.getHandleByName( rPropertyName ); in removePropertyChangeListener() local
341 if( nHandle == -1 ) in removePropertyChangeListener()
344 aBoundLC.removeInterface( (sal_Int32)nHandle, rxListener ); in removePropertyChangeListener()
376 sal_Int32 nHandle = rPH.getHandleByName( rPropertyName ); in addVetoableChangeListener() local
377 if( nHandle == -1 ) { in addVetoableChangeListener()
383 rPH.fillPropertyMembersByHandle( NULL, &nAttributes, nHandle ); in addVetoableChangeListener()
391 aVetoableLC.addInterface( (sal_Int32)nHandle, rxListener ); in addVetoableChangeListener()
420 sal_Int32 nHandle = rPH.getHandleByName( rPropertyName ); in removeVetoableChangeListener() local
421 if( nHandle == -1 ) { in removeVetoableChangeListener()
426 aVetoableLC.removeInterface( (sal_Int32)nHandle, rxListener ); in removeVetoableChangeListener()
489 void OPropertySetHelper::setFastPropertyValue( sal_Int32 nHandle, const Any& rValue ) in setFastPropertyValue() argument
501 if( !rInfo.fillPropertyMembersByHandle( NULL, &nAttributes, nHandle ) ) { in setFastPropertyValue()
515 bChanged = convertFastPropertyValue( aConvertedVal, aOldVal, nHandle, rValue ); in setFastPropertyValue()
526 fire( &nHandle, &rValue, &aOldVal, 1, sal_True ); in setFastPropertyValue()
534 setFastPropertyValue_NoBroadcast( nHandle, aConvertedVal ); in setFastPropertyValue()
554 impl_fireAll( &nHandle, &rValue, &aOldVal, 1 ); in setFastPropertyValue()
559 Any OPropertySetHelper::getFastPropertyValue( sal_Int32 nHandle ) in getFastPropertyValue() argument
566 if( !rInfo.fillPropertyMembersByHandle( NULL, NULL, nHandle ) ) in getFastPropertyValue()
572 getFastPropertyValue( aRet, nHandle ); in getFastPropertyValue()
1156 sal_Int32 nHandle in fillPropertyMembersByHandle() argument
1164 if( nHandle < 0 || nHandle >= nElements ) in fillPropertyMembersByHandle()
1167 *pPropName = pProperties[ nHandle ].Name; in fillPropertyMembersByHandle()
1169 *pAttributes = pProperties[ nHandle ].Attributes; in fillPropertyMembersByHandle()
1177 if( pProperties[i].Handle == nHandle ) in fillPropertyMembersByHandle()