Lines Matching refs:_rPropertyName

261 			const ::rtl::OUString& _rPropertyName )  in exportStringPropertyAttribute()
263 DBG_CHECK_PROPERTY( _rPropertyName, ::rtl::OUString ); in exportStringPropertyAttribute()
272 m_xProps->getPropertyValue( _rPropertyName ) >>= sPropValue; in exportStringPropertyAttribute()
279 exportedProperty( _rPropertyName ); in exportStringPropertyAttribute()
284 const ::rtl::OUString& _rPropertyName, const sal_Int8 _nBooleanAttributeFlags) in exportBooleanPropertyAttribute()
286 DBG_CHECK_PROPERTY_NO_TYPE( _rPropertyName ); in exportBooleanPropertyAttribute()
295 Any aCurrentValue = m_xProps->getPropertyValue( _rPropertyName ); in exportBooleanPropertyAttribute()
318 exportedProperty( _rPropertyName ); in exportBooleanPropertyAttribute()
323 const ::rtl::OUString& _rPropertyName, const sal_Int16 _nDefault) in exportInt16PropertyAttribute()
325 DBG_CHECK_PROPERTY( _rPropertyName, sal_Int16 ); in exportInt16PropertyAttribute()
329 m_xProps->getPropertyValue( _rPropertyName ) >>= nCurrentValue; in exportInt16PropertyAttribute()
342 exportedProperty( _rPropertyName ); in exportInt16PropertyAttribute()
347 const ::rtl::OUString& _rPropertyName, const sal_Int32 _nDefault ) in exportInt32PropertyAttribute()
349 DBG_CHECK_PROPERTY( _rPropertyName, sal_Int32 ); in exportInt32PropertyAttribute()
353 m_xProps->getPropertyValue( _rPropertyName ) >>= nCurrentValue; in exportInt32PropertyAttribute()
366 exportedProperty( _rPropertyName ); in exportInt32PropertyAttribute()
497 const ::rtl::OUString& _rPropertyName, in exportStringSequenceAttribute()
500 DBG_CHECK_PROPERTY( _rPropertyName, Sequence< ::rtl::OUString > ); in exportStringSequenceAttribute()
504 m_xProps->getPropertyValue( _rPropertyName ) >>= aItems; in exportStringSequenceAttribute()
540 exportedProperty( _rPropertyName ); in exportStringSequenceAttribute()
696 …void OPropertyExport::dbg_implCheckProperty(const ::rtl::OUString& _rPropertyName, const Type* _pT… in dbg_implCheckProperty() argument
701 if (!m_xPropertyInfo->hasPropertyByName(_rPropertyName)) in dbg_implCheckProperty()
705 … ::rtl::OString(_rPropertyName.getStr(), _rPropertyName.getLength(), RTL_TEXTENCODING_ASCII_US) += in dbg_implCheckProperty()
713 Property aPropertyDescription = m_xPropertyInfo->getPropertyByName(_rPropertyName); in dbg_implCheckProperty()