Lines Matching refs:operator

89         TRes*   operator->() { return &m_Res; }
99 const TRes* operator->() const { return &m_Res; }
185 operator pointer() { return m_pBegin; } in pointer()
186 operator const pointer() const { return m_pBegin; } in pointer()
188 reference operator[](int index)
194 const_reference operator[](int index) const
215 operator const_iterator() { return const_iterator(m_pCurrent); } in const_iterator()
217 …reference operator*() const { NW_NULL_ASSERT(m_pCurrent); return TTraits<T>::GetValue(m_pCurrent)…
220 iter_pointer operator->() const { return TTraits<T>::GetPointer(m_pCurrent); }
223 TIt &operator++() { ++m_pCurrent; return *this; }
224 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
225 TIt &operator--() { --m_pCurrent; return *this; }
226 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
228 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
229 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }
254 …const_reference operator*() const { NW_NULL_ASSERT(m_pCurrent); return TTraits<T>::GetValue(m_pCu…
257 const_iter_pointer operator->() const { return TTraits<T>::GetPointer(m_pCurrent); }
260 TIt &operator++() { ++m_pCurrent; return *this; }
261 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
262 TIt &operator--() { --m_pCurrent; return *this; }
263 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
265 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
266 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }
334 operator const pointer() const { return m_pBegin; } in pointer()
336 const_reference operator[](int index) const
356 …const_reference operator*() const { NW_NULL_ASSERT(m_pCurrent); return TTraits<T>::GetValue(m_pCu…
359 const_iter_pointer operator->() const { return TTraits<T>::GetPointer(m_pCurrent); }
362 TIt &operator++() { ++m_pCurrent; return *this; }
363 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
364 TIt &operator--() { --m_pCurrent; return *this; }
365 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
367 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
368 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }