Lines Matching refs:m_aData

249         MapData             m_aData;  member in comphelper::EnumerableMap
410 m_aData.m_aKeyType = aKeyType; in initialize()
411 m_aData.m_aValueType = aValueType; in initialize()
412 m_aData.m_pKeyCompare = pComparator; in initialize()
413 m_aData.m_pValues.reset( new KeyedValues( *m_aData.m_pKeyCompare ) ); in initialize()
414 m_aData.m_bMutable = bMutable; in initialize()
425 …OSL_PRECOND( m_aData.m_pValues.get() && m_aData.m_pValues->empty(), "EnumerableMap::impl_initValue… in impl_initValues_throw()
426 if ( !m_aData.m_pValues.get() || !m_aData.m_pValues->empty() ) in impl_initValues_throw()
435 (*m_aData.m_pValues)[ mapping->First ] = mapping->Second; in impl_initValues_throw()
446 TypeClass eAllowedTypeClass = m_aData.m_aValueType.getTypeClass(); in impl_checkValue_throw()
461 if ( m_aData.m_aValueType.isAssignableFrom( _value.getValueType() ) ) in impl_checkValue_throw()
471 xValue.set( xValue->queryInterface( m_aData.m_aValueType ), UNO_QUERY ); in impl_checkValue_throw()
487 const TypeDescription aRequiredTypeDesc( m_aData.m_aValueType ); in impl_checkValue_throw()
510 aMessage.append( m_aData.m_aValueType.getTypeName() ); in impl_checkValue_throw()
515 impl_checkNaN_throw( _value, m_aData.m_aValueType ); in impl_checkValue_throw()
544 impl_checkNaN_throw( _key, m_aData.m_aKeyType ); in impl_checkKey_throw()
550 if ( !m_aData.m_bMutable ) in impl_checkMutable_throw()
560 return new MapEnumeration( *this, m_aData, getBroadcastHelper(), eKeys, _Isolated ); in createKeyEnumeration()
567 return new MapEnumeration( *this, m_aData, getBroadcastHelper(), eValues, _Isolated ); in createValueEnumeration()
574 return new MapEnumeration( *this, m_aData, getBroadcastHelper(), eBoth, _Isolated ); in createElementEnumeration()
581 return m_aData.m_aKeyType; in getKeyType()
588 return m_aData.m_aValueType; in getValueType()
597 m_aData.m_pValues->clear(); in clear()
599 lcl_notifyMapDataListeners_nothrow( m_aData ); in clear()
608 KeyedValues::const_iterator pos = m_aData.m_pValues->find( _key ); in containsKey()
609 return ( pos != m_aData.m_pValues->end() ); in containsKey()
618 for ( KeyedValues::const_iterator mapping = m_aData.m_pValues->begin(); in containsValue()
619 mapping != m_aData.m_pValues->end(); in containsValue()
635 KeyedValues::const_iterator pos = m_aData.m_pValues->find( _key ); in get()
636 if ( pos == m_aData.m_pValues->end() ) in get()
652 KeyedValues::iterator pos = m_aData.m_pValues->find( _key ); in put()
653 if ( pos != m_aData.m_pValues->end() ) in put()
660 (*m_aData.m_pValues)[ _key ] = _value; in put()
663 lcl_notifyMapDataListeners_nothrow( m_aData ); in put()
677 KeyedValues::iterator pos = m_aData.m_pValues->find( _key ); in remove()
678 if ( pos != m_aData.m_pValues->end() ) in remove()
681 m_aData.m_pValues->erase( pos ); in remove()
684 lcl_notifyMapDataListeners_nothrow( m_aData ); in remove()
699 return m_aData.m_pValues->empty(); in hasElements()