Home | History | Annotate | Download | only in keymaster

Lines Matching refs:right

116         inline bool operator==(const _Iter& right) const { 
117 return mpNode == right.mpNode; }
119 inline bool operator!=(const _Iter& right) const {
120 return mpNode != right.mpNode; }
126 inline bool operator==(const OTHER& right) const {
127 return mpNode == right.mpNode; }
130 inline bool operator!=(const OTHER& right) const {
131 return mpNode != right.mpNode; }
178 List<T>& operator=(const List<T>& right);
313 List<T>& List<T>::operator=(const List<T>& right)
315 if (this == &right)
319 const_iterator firstSrc = right.begin();
320 const_iterator lastSrc = right.end();