Lines Matching refs:rDefault
277 …nt( const VectorType& rVector, sal_Int32 nIndex, const typename VectorType::value_type& rDefault );
283 …rElementAccess( VectorType& rVector, sal_Int32 nIndex, typename VectorType::value_type& rDefault );
301 …ype& rMap, const typename MapType::key_type& rKey, const typename MapType::mapped_type& rDefault );
307 …( MapType& rMap, const typename MapType::key_type& rKey, typename MapType::mapped_type& rDefault );
361 …ent( const VectorType& rVector, sal_Int32 nIndex, const typename VectorType::value_type& rDefault ) in getVectorElement() argument
363 …ast< size_t >( nIndex ) < rVector.size())) ? rVector[ static_cast< size_t >( nIndex ) ] : rDefault; in getVectorElement()
367 …orElementAccess( VectorType& rVector, sal_Int32 nIndex, typename VectorType::value_type& rDefault ) in getVectorElementAccess() argument
369 …ast< size_t >( nIndex ) < rVector.size())) ? rVector[ static_cast< size_t >( nIndex ) ] : rDefault; in getVectorElementAccess()
387 …Type& rMap, const typename MapType::key_type& rKey, const typename MapType::mapped_type& rDefault ) in getMapElement() argument
390 return (aIt == rMap.end()) ? rDefault : aIt->second; in getMapElement()
394 …s( MapType& rMap, const typename MapType::key_type& rKey, typename MapType::mapped_type& rDefault ) in getMapElementAccess() argument
397 return (aIt == rMap.end()) ? rDefault : aIt->second; in getMapElementAccess()