Lines Matching refs:operator
75 friend bool operator==(const Self &r1,const Self &r2) { return &r1 == &r2; }
85 friend bool operator!=(const Self &r1,const Self &r2) { return !(r1 == r2); }
134 reference operator*() const { NW_NULL_ASSERT(m_pPointer); return *m_pPointer; }
135 pointer operator->() const { return m_pPointer; }
137 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
138 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
139 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
140 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
142 friend bool operator==(TIt it1, TIt it2) { return it1.m_pPointer == it2.m_pPointer; }
143 friend bool operator!=(TIt it1, TIt it2) { return !(it1 == it2); }
171 reference operator*() const { NW_NULL_ASSERT(m_pPointer); return *m_pPointer;}
172 pointer operator->() const { return m_pPointer;}
174 TIt &operator++() { m_pPointer = m_pPointer->GetNext(); return *this; }
175 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
176 TIt &operator--() { m_pPointer = m_pPointer->GetPrev(); return *this; }
177 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
179 friend bool operator==(TIt it1, TIt it2) {return it1.m_pPointer == it2.m_pPointer; }
180 friend bool operator!=(TIt it1, TIt it2) {return !(it1 == it2);}
373 reference operator*() const { pointer p = operator->(); NW_NULL_ASSERT(p); return *p;}
380 pointer operator->() const { return GetPointerFromNode(it_.operator->());}
387 TIt &operator++() { (void)++it_; return *this; }
394 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
401 TIt &operator--() { (void)--it_; return *this; }
408 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
418 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
428 …friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); } // it1, it2 にすると何故かコンパイラ…
479 reference operator*() const { pointer p = operator->(); NW_NULL_ASSERT(p); return *p; }
486 pointer operator->() const { return GetPointerFromNode(it_.operator->());}
493 TIt &operator++() { (void)++it_; return *this; }
500 TIt operator++(int) { const TIt it(*this); (void)++*this; return it; }
507 TIt &operator--() { (void)--it_; return *this;}
514 TIt operator--(int) { const TIt it(*this); (void)--*this; return it; }
524 friend bool operator == (TIt it1, TIt it2) { return it1.it_== it2.it_; }
534 friend bool operator != (TIt it1_, TIt it2_) { return !(it1_ == it2_); }