Lines Matching refs:m_aMap
56 , m_aMap() in NameContainer()
66 , m_aMap( rOther.m_aMap ) in NameContainer()
110 if( m_aMap.find( rName ) != m_aMap.end() ) in insertByName()
112 m_aMap.insert( tContentMap::value_type( rName, rElement )); in insertByName()
120 tContentMap::iterator aIt( m_aMap.find( Name )); in removeByName()
121 if( aIt == m_aMap.end()) in removeByName()
123 m_aMap.erase( aIt ); in removeByName()
130 tContentMap::iterator aIt( m_aMap.find( rName )); in replaceByName()
131 if( aIt == m_aMap.end() ) in replaceByName()
140 tContentMap::iterator aIter( m_aMap.find( rName ) ); in getByName()
141 if( aIter == m_aMap.end() ) in getByName()
149 sal_Int32 nCount = m_aMap.size(); in getElementNames()
152 …for( tContentMap::iterator aIter = m_aMap.begin(); aIter != m_aMap.end(), nN < nCount; aIter++, nN… in getElementNames()
160 return ( m_aMap.find( rName ) != m_aMap.end() ); in hasByName()
167 return ! m_aMap.empty(); in hasElements()