Lines Matching refs:_rValue

191 void OComboBoxModel::getFastPropertyValue(Any& _rValue, sal_Int32 _nHandle) const  in getFastPropertyValue()  argument
196 _rValue <<= m_eListSourceType; in getFastPropertyValue()
200 _rValue <<= m_aListSource; in getFastPropertyValue()
204 _rValue <<= m_bEmptyIsNull; in getFastPropertyValue()
208 _rValue <<= m_aDefaultText; in getFastPropertyValue()
212 _rValue <<= getStringItemList(); in getFastPropertyValue()
216 OBoundControlModel::getFastPropertyValue(_rValue, _nHandle); in getFastPropertyValue()
221 void OComboBoxModel::setFastPropertyValue_NoBroadcast(sal_Int32 _nHandle, const Any& _rValue) in setFastPropertyValue_NoBroadcast() argument
227 DBG_ASSERT(_rValue.getValueType().equals(::getCppuType(reinterpret_cast<ListSourceType*>(NULL))), in setFastPropertyValue_NoBroadcast()
229 _rValue >>= m_eListSourceType; in setFastPropertyValue_NoBroadcast()
233 DBG_ASSERT(_rValue.getValueType().getTypeClass() == TypeClass_STRING, in setFastPropertyValue_NoBroadcast()
235 _rValue >>= m_aListSource; in setFastPropertyValue_NoBroadcast()
247 DBG_ASSERT(_rValue.getValueType().getTypeClass() == TypeClass_BOOLEAN, in setFastPropertyValue_NoBroadcast()
249 _rValue >>= m_bEmptyIsNull; in setFastPropertyValue_NoBroadcast()
253 DBG_ASSERT(_rValue.getValueType().getTypeClass() == TypeClass_STRING, in setFastPropertyValue_NoBroadcast()
255 _rValue >>= m_aDefaultText; in setFastPropertyValue_NoBroadcast()
262 setNewStringItemList( _rValue, aLock ); in setFastPropertyValue_NoBroadcast()
271 OBoundControlModel::setFastPropertyValue_NoBroadcast(_nHandle, _rValue); in setFastPropertyValue_NoBroadcast()
277 Any& _rConvertedValue, Any& _rOldValue, sal_Int32 _nHandle, const Any& _rValue) in convertFastPropertyValue() argument
284 bModified = tryPropertyValueEnum(_rConvertedValue, _rOldValue, _rValue, m_eListSourceType); in convertFastPropertyValue()
288 bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aListSource); in convertFastPropertyValue()
292 bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_bEmptyIsNull); in convertFastPropertyValue()
296 bModified = tryPropertyValue(_rConvertedValue, _rOldValue, _rValue, m_aDefaultText); in convertFastPropertyValue()
300 bModified = convertNewListSourceProperty( _rConvertedValue, _rOldValue, _rValue ); in convertFastPropertyValue()
304 …ed = OBoundControlModel::convertFastPropertyValue(_rConvertedValue, _rOldValue, _nHandle, _rValue); in convertFastPropertyValue()