Lines Matching refs:aPropertyName

59 …virtual void SAL_CALL setPropertyValue( const OUString& aPropertyName, const Any& aValue ) throw(U…
61 …virtual void SAL_CALL addPropertyChangeListener( const OUString& aPropertyName, const Reference< X…
62 …virtual void SAL_CALL removePropertyChangeListener( const OUString& aPropertyName, const Reference…
68 …opertyState > SAL_CALL getPropertyStates( const Sequence< OUString >& aPropertyName ) throw(Unknow…
70 …virtual Any SAL_CALL getPropertyDefault( const OUString& aPropertyName ) throw(UnknownPropertyExce…
102 void SAL_CALL PropertySetMergerImpl::setPropertyValue( const OUString& aPropertyName, const Any& aV… in setPropertyValue() argument
104 if( mxPropSet1Info->hasPropertyByName( aPropertyName ) ) in setPropertyValue()
106 mxPropSet1->setPropertyValue( aPropertyName, aValue ); in setPropertyValue()
110 mxPropSet2->setPropertyValue( aPropertyName, aValue ); in setPropertyValue()
169 …PropertySetMergerImpl::getPropertyStates( const Sequence< OUString >& aPropertyName ) throw(Unknow… in getPropertyStates() argument
171 const sal_Int32 nCount = aPropertyName.getLength(); in getPropertyStates()
174 const OUString* pPropNames = aPropertyName.getConstArray(); in getPropertyStates()
198 Any SAL_CALL PropertySetMergerImpl::getPropertyDefault( const OUString& aPropertyName ) throw(Unkno… in getPropertyDefault() argument
200 if( mxPropSet1State.is() && mxPropSet1Info->hasPropertyByName( aPropertyName ) ) in getPropertyDefault()
202 return mxPropSet1State->getPropertyDefault( aPropertyName ); in getPropertyDefault()
208 return mxPropSet2State->getPropertyDefault( aPropertyName ); in getPropertyDefault()