Lines Matching refs:_key

216 …virtual ::sal_Bool SAL_CALL containsKey( const Any& _key ) throw (IllegalTypeException, IllegalArg…
218 …virtual Any SAL_CALL get( const Any& _key ) throw (IllegalTypeException, IllegalArgumentException,…
219 …virtual Any SAL_CALL put( const Any& _key, const Any& _value ) throw (NoSupportException, IllegalT…
220 …virtual Any SAL_CALL remove( const Any& _key ) throw (NoSupportException, IllegalTypeException, Il…
242 void impl_checkKey_throw( const Any& _key ) const;
537 void EnumerableMap::impl_checkKey_throw( const Any& _key ) const in impl_checkKey_throw()
539 if ( !_key.hasValue() ) in impl_checkKey_throw()
544 impl_checkNaN_throw( _key, m_aData.m_aKeyType ); in impl_checkKey_throw()
603 …::sal_Bool SAL_CALL EnumerableMap::containsKey( const Any& _key ) throw (IllegalTypeException, Ill… in containsKey() argument
606 impl_checkKey_throw( _key ); in containsKey()
608 KeyedValues::const_iterator pos = m_aData.m_pValues->find( _key ); in containsKey()
630 …Any SAL_CALL EnumerableMap::get( const Any& _key ) throw (IllegalTypeException, IllegalArgumentExc… in get() argument
633 impl_checkKey_throw( _key ); in get()
635 KeyedValues::const_iterator pos = m_aData.m_pValues->find( _key ); in get()
637 throw NoSuchElementException( anyToString( _key ), *this ); in get()
643 …Any SAL_CALL EnumerableMap::put( const Any& _key, const Any& _value ) throw (NoSupportException, I… in put() argument
647 impl_checkKey_throw( _key ); in put()
652 KeyedValues::iterator pos = m_aData.m_pValues->find( _key ); in put()
660 (*m_aData.m_pValues)[ _key ] = _value; in put()
669 …Any SAL_CALL EnumerableMap::remove( const Any& _key ) throw (NoSupportException, IllegalTypeExcept… in remove() argument
673 impl_checkKey_throw( _key ); in remove()
677 KeyedValues::iterator pos = m_aData.m_pValues->find( _key ); in remove()