Lines Matching refs:_rValue

259     void OListBoxModel::getFastPropertyValue(Any& _rValue, sal_Int32 _nHandle) const  in getFastPropertyValue()  argument
264 _rValue <<= m_aBoundColumn; in getFastPropertyValue()
268 _rValue <<= m_eListSourceType; in getFastPropertyValue()
272 _rValue <<= lcl_convertToStringSequence( m_aListSourceValues ); in getFastPropertyValue()
276 _rValue <<= lcl_convertToStringSequence( m_aBoundValues ); in getFastPropertyValue()
280 _rValue <<= m_aDefaultSelectSeq; in getFastPropertyValue()
284 _rValue <<= getStringItemList(); in getFastPropertyValue()
288 OBoundControlModel::getFastPropertyValue(_rValue, _nHandle); in getFastPropertyValue()
293 …void OListBoxModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const Any& _rValue) throw… in setFastPropertyValue_NoBroadcast() argument
298 …DBG_ASSERT((_rValue.getValueType().getTypeClass() == TypeClass_SHORT) || (_rValue.getValueType().g… in setFastPropertyValue_NoBroadcast()
300 m_aBoundColumn = _rValue; in setFastPropertyValue_NoBroadcast()
304 … DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast<ListSourceType*>(NULL))), in setFastPropertyValue_NoBroadcast()
306 _rValue >>= m_eListSourceType; in setFastPropertyValue_NoBroadcast()
313 OSL_VERIFY( _rValue >>= aListSource ); in setFastPropertyValue_NoBroadcast()
343 …DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast< Sequence<sal_Int16>*>(NUL… in setFastPropertyValue_NoBroadcast()
345 _rValue >>= m_aDefaultSelectSeq; in setFastPropertyValue_NoBroadcast()
349 setControlValue( _rValue, eOther ); in setFastPropertyValue_NoBroadcast()
355 setNewStringItemList( _rValue, aLock ); in setFastPropertyValue_NoBroadcast()
365 OBoundControlModel::setFastPropertyValue_NoBroadcast(_nHandle, _rValue); in setFastPropertyValue_NoBroadcast()
371 Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue) in convertFastPropertyValue() argument
378 …bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aBoundColumn, ::getCppuType(… in convertFastPropertyValue()
382 … bModified = tryPropertyValueEnum(_rConvertedValue, _rOldValue, _rValue, m_eListSourceType); in convertFastPropertyValue()
386 …bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, lcl_convertToStringSequence( m… in convertFastPropertyValue()
394 … bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aDefaultSelectSeq); in convertFastPropertyValue()
398 bModified = convertNewListSourceProperty( _rConvertedValue, _rOldValue, _rValue ); in convertFastPropertyValue()
402 …turn OBoundControlModel::convertFastPropertyValue(_rConvertedValue, _rOldValue, _nHandle, _rValue); in convertFastPropertyValue()