Lines Matching full:value
51 bool HashMap<T1,T2>::insert( T1 const & index, T2 const & value)
54 pair<typename std::map<T1,T2>::iterator,bool> result = m_Map.insert( make_pair(index, value) );
86 bool HashMap<T1,T2>::getIndex( T2 const & value, T1 *index )
88 //do something with all elements having a certain value
91 if (pos->second == value) {
100 bool HashMap<T1,T2>::getFirst( T1 *index, T2 *value )
105 //do something with all elements having a certain value
109 *value= m_pPos->second;
114 bool HashMap<T1,T2>::getNext( T1 *index, T2 *value )
123 *value= m_pPos->second;
128 bool HashMap<T1,T2>::getValue(T1 const & index, T2 *value)
133 *value = pos->second;