Lines Matching refs:operator
87 TRes* operator->() { return &m_Res; }
97 const TRes* operator->() const { return &m_Res; }
183 operator pointer() { return m_pBegin; } in pointer()
184 operator const pointer() const { return m_pBegin; } in pointer()
186 reference operator[](int index)
192 const_reference operator[](int index) const
213 operator const_iterator() { return const_iterator(m_pCurrent); } in const_iterator()
215 …reference operator*() const { NW_NULL_ASSERT(m_pCurrent); return TTraits<T>::GetValue(m_pCurrent)…
218 iter_pointer operator->() const { return TTraits<T>::GetPointer(m_pCurrent); }
221 TIt &operator++() { ++m_pCurrent; return *this; }
222 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
223 TIt &operator--() { --m_pCurrent; return *this; }
224 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
226 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
227 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }
252 …const_reference operator*() const { NW_NULL_ASSERT(m_pCurrent); return TTraits<T>::GetValue(m_pCu…
255 const_iter_pointer operator->() const { return TTraits<T>::GetPointer(m_pCurrent); }
258 TIt &operator++() { ++m_pCurrent; return *this; }
259 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
260 TIt &operator--() { --m_pCurrent; return *this; }
261 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
263 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
264 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }
332 operator const pointer() const { return m_pBegin; } in pointer()
334 const_reference operator[](int index) const
354 …const_reference operator*() const { NW_NULL_ASSERT(m_pCurrent); return TTraits<T>::GetValue(m_pCu…
357 const_iter_pointer operator->() const { return TTraits<T>::GetPointer(m_pCurrent); }
360 TIt &operator++() { ++m_pCurrent; return *this; }
361 TIt operator++(int) { TIt it(*this); (void)++*this; return it; }
362 TIt &operator--() { --m_pCurrent; return *this; }
363 TIt operator--(int) { TIt it(*this); (void)--*this; return it; }
365 friend bool operator==(TIt it1, TIt it2) { return it1.m_pCurrent == it2.m_pCurrent; }
366 friend bool operator!=(TIt it1_, TIt it2_) { return !(it1_ == it2_); }