Home | History | Annotate | Download | only in gcc

Lines Matching defs:list_head

818    to "T *prev, *next;" and a function "void set_parent (list_head <T> *)"
821 class list_head
832 void set_parent (list_head *);
835 list_head ();
848 list_head <T>::range::range (T *start_in) : start (start_in), end (start_in) {}
853 list_head <T>::range::range (T *start_in, T *end_in)
858 list_head <T>::range::set_parent (list_head <T> *owner)
866 list_head <T>::list_head () : first (0), last (0) {}
872 list_head <T>::push_back (range r)
887 typename list_head <T>::range
888 list_head <T>::remove (range r)
909 list_head <T>::replace (range oldr, range newr)
933 typename list_head <T>::range
934 list_head <T>::release ()
948 list_head <T>::singleton () const
1512 void set_parent (list_head <transition> *);
1548 class decision : public list_head <transition>
1553 void set_parent (list_head <decision> *s);
1569 class state : public list_head <decision>
1572 void set_parent (list_head <state> *) {}
1583 transition::set_parent (list_head <transition> *from_in)
1594 decision::set_parent (list_head <decision> *s_in)