Lines Matching refs:operator

77     friend bool operator==(const Self &r1,const Self &r2) { return &r1 == &r2; }
87 friend bool operator!=(const Self &r1,const Self &r2) { return !(r1 == r2); }
136 reference operator*() const { NW_NULL_ASSERT(m_pPointer); return *m_pPointer; }
137 pointer operator->() const { return m_pPointer; }
139 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
140 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
141 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
142 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
144 friend bool operator==(TIt it1, TIt it2) { return it1.m_pPointer == it2.m_pPointer; }
145 friend bool operator!=(TIt it1, TIt it2) { return !(it1 == it2); }
173 reference operator*() const { NW_NULL_ASSERT(m_pPointer); return *m_pPointer;}
174 pointer operator->() const { return m_pPointer;}
176 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
177 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
178 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
179 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
181 friend bool operator==(TIt it1, TIt it2) {return it1.m_pPointer == it2.m_pPointer; }
182 friend bool operator!=(TIt it1, TIt it2) {return !(it1 == it2);}
376 reference operator*() const { pointer p = operator->(); NW_NULL_ASSERT(p); return *p;}
383 pointer operator->() const { return GetPointerFromNode(it_.operator->());}
390 TIt &operator++() { (void)++it_; return *this; }
397 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
404 TIt &operator--() { (void)--it_; return *this; }
411 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
421 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
431 …friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); } // it1, it2 にすると何故かコンパイラ…
482 reference operator*() const { pointer p = operator->(); NW_NULL_ASSERT(p); return *p; }
489 pointer operator->() const { return GetPointerFromNode(it_.operator->());}
496 TIt &operator++() { (void)++it_; return *this; }
503 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
510 TIt &operator--() { (void)--it_; return *this;}
517 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
527 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
537 friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); }