Searched refs:next_hook (Results 1 – 1 of 1) sorted by relevance
34 IntrusiveForwardListHook() : next_hook(nullptr) { } in IntrusiveForwardListHook()35 explicit IntrusiveForwardListHook(const IntrusiveForwardListHook* hook) : next_hook(hook) { } in IntrusiveForwardListHook()39 : next_hook(nullptr) {} in IntrusiveForwardListHook()44 mutable const IntrusiveForwardListHook* next_hook; member84 hook_ = hook_->next_hook;157 IntrusiveForwardList(IntrusiveForwardList&& src) noexcept : first_(src.first_.next_hook) { in IntrusiveForwardList()158 src.first_.next_hook = nullptr; in IntrusiveForwardList()171 iterator begin() { return iterator(first_.next_hook); } in begin()172 const_iterator begin() const { return const_iterator(first_.next_hook); } in begin()176 const_iterator cbegin() const { return const_iterator(first_.next_hook); } in cbegin()[all …]