Home | History | Annotate | Download | only in utils

Lines Matching refs:first_

141   IntrusiveForwardList(IntrusiveForwardList&& src) : first_(src.first_.next_hook) {
142 src.first_.next_hook = nullptr;
153 iterator before_begin() { return iterator(&first_); }
154 const_iterator before_begin() const { return const_iterator(&first_); }
155 iterator begin() { return iterator(first_.next_hook); }
156 const_iterator begin() const { return const_iterator(first_.next_hook); }
159 const_iterator cbefore_begin() const { return const_iterator(&first_); }
160 const_iterator cbegin() const { return const_iterator(first_.next_hook); }
208 std::swap(first_.next_hook, other.first_.next_hook);
211 first_.next_hook = nullptr;
386 IntrusiveForwardListHook first_;