Lines Matching refs:rMap

289 …                      getMapElement( const MapType& rMap, const typename MapType::key_type& rKey );
295 … getMapElementAccess( MapType& rMap, const typename MapType::key_type& rKey );
301 …getMapElement( const MapType& rMap, const typename MapType::key_type& rKey, const typename MapType…
307 …getMapElementAccess( MapType& rMap, const typename MapType::key_type& rKey, typename MapType::mapp…
331 mapToSequence( const MapType& rMap );
373 /*static*/ const typename MapType::mapped_type* ContainerHelper::getMapElement( const MapType& rMap in getMapElement() argument
375 typename MapType::const_iterator aIt = rMap.find( rKey ); in getMapElement()
376 return (aIt == rMap.end()) ? 0 : &aIt->second; in getMapElement()
380 /*static*/ typename MapType::mapped_type* ContainerHelper::getMapElementAccess( MapType& rMap, cons… in getMapElementAccess() argument
382 typename MapType::iterator aIt = rMap.find( rKey ); in getMapElementAccess()
383 return (aIt == rMap.end()) ? 0 : &aIt->second; in getMapElementAccess()
387 /*static*/ const typename MapType::mapped_type& ContainerHelper::getMapElement( const MapType& rMap in getMapElement() argument
389 typename MapType::const_iterator aIt = rMap.find( rKey ); in getMapElement()
390 return (aIt == rMap.end()) ? rDefault : aIt->second; in getMapElement()
394 /*static*/ typename MapType::mapped_type& ContainerHelper::getMapElementAccess( MapType& rMap, cons… in getMapElementAccess() argument
396 typename MapType::iterator aIt = rMap.find( rKey ); in getMapElementAccess()
397 return (aIt == rMap.end()) ? rDefault : aIt->second; in getMapElementAccess()
410 …no::Sequence< typename MapType::mapped_type > ContainerHelper::mapToSequence( const MapType& rMap ) in mapToSequence() argument
413 if( rMap.empty() ) in mapToSequence()
415 ::com::sun::star::uno::Sequence< ValueType > aSeq( static_cast< sal_Int32 >( rMap.size() ) ); in mapToSequence()
417 …for( typename MapType::const_iterator aIt = rMap.begin(), aEnd = rMap.end(); aIt != aEnd; ++aIt, +… in mapToSequence()