Searched refs:node_base_type (Results 1 – 4 of 4) sorted by relevance
20 using node_base_type = ilist_node_base<EnableSentinelTracking>;22 static void insertBeforeImpl(node_base_type &Next, node_base_type &N) { in insertBeforeImpl()23 node_base_type &Prev = *Next.getPrev(); in insertBeforeImpl()30 static void removeImpl(node_base_type &N) { in removeImpl()31 node_base_type *Prev = N.getPrev(); in removeImpl()32 node_base_type *Next = N.getNext(); in removeImpl()41 static void removeRangeImpl(node_base_type &First, node_base_type &Last) { in removeRangeImpl()42 node_base_type *Prev = First.getPrev(); in removeRangeImpl()43 node_base_type *Final = Last.getPrev(); in removeRangeImpl()52 static void transferBeforeImpl(node_base_type &Next, node_base_type &First, in transferBeforeImpl()[all …]
39 template <class OptionsT> class ilist_node_impl : OptionsT::node_base_type {41 using node_base_type = typename OptionsT::node_base_type; variable62 return static_cast<ilist_node_impl *>(node_base_type::getPrev()); in getPrev()66 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext()70 return static_cast<ilist_node_impl *>(node_base_type::getPrev()); in getPrev()74 return static_cast<ilist_node_impl *>(node_base_type::getNext()); in getNext()77 void setPrev(ilist_node_impl *N) { node_base_type::setPrev(N); } in setPrev()78 void setNext(ilist_node_impl *N) { node_base_type::setNext(N); } in setNext()93 using node_base_type::isKnownSentinel;102 return node_base_type::isSentinel(); in isSentinel()
117 typedef ilist_node_base<enable_sentinel_tracking> node_base_type;
816 node_base_type = self.sentinel.type.template_argument(0)817 self.cast_type = node_base_type.template_argument(0)