Lines Matching refs:_value

217 …virtual ::sal_Bool SAL_CALL containsValue( const Any& _value ) throw (IllegalTypeException, Illega…
219 …virtual Any SAL_CALL put( const Any& _key, const Any& _value ) throw (NoSupportException, IllegalT…
241 void impl_checkValue_throw( const Any& _value ) const;
440 void EnumerableMap::impl_checkValue_throw( const Any& _value ) const in impl_checkValue_throw()
442 if ( !_value.hasValue() ) in impl_checkValue_throw()
452 bValid = ( _value.getValueTypeClass() == eAllowedTypeClass ); in impl_checkValue_throw()
461 if ( m_aData.m_aValueType.isAssignableFrom( _value.getValueType() ) ) in impl_checkValue_throw()
467 Reference< XInterface > xValue( _value, UNO_QUERY ); in impl_checkValue_throw()
482 if ( _value.getValueTypeClass() != eAllowedTypeClass ) in impl_checkValue_throw()
486 const TypeDescription aValueTypeDesc( _value.getValueType() ); in impl_checkValue_throw()
508 aMessage.append( _value.getValueTypeName() ); in impl_checkValue_throw()
515 impl_checkNaN_throw( _value, m_aData.m_aValueType ); in impl_checkValue_throw()
613 …::sal_Bool SAL_CALL EnumerableMap::containsValue( const Any& _value ) throw (IllegalTypeException,… in containsValue() argument
616 impl_checkValue_throw( _value ); in containsValue()
623 if ( mapping->second == _value ) in containsValue()
643 …Any SAL_CALL EnumerableMap::put( const Any& _key, const Any& _value ) throw (NoSupportException, I… in put() argument
648 impl_checkValue_throw( _value ); in put()
656 pos->second = _value; in put()
660 (*m_aData.m_pValues)[ _key ] = _value; in put()