Home | History | Annotate | Download | only in utils

Lines Matching defs:first_

151   IntrusiveForwardList(IntrusiveForwardList&& src) : first_(src.first_.next_hook) {
152 src.first_.next_hook = nullptr;
163 iterator before_begin() { return iterator(&first_); }
164 const_iterator before_begin() const { return const_iterator(&first_); }
165 iterator begin() { return iterator(first_.next_hook); }
166 const_iterator begin() const { return const_iterator(first_.next_hook); }
169 const_iterator cbefore_begin() const { return const_iterator(&first_); }
170 const_iterator cbegin() const { return const_iterator(first_.next_hook); }
218 std::swap(first_.next_hook, other.first_.next_hook);
221 first_.next_hook = nullptr;
396 IntrusiveForwardListHook first_;