Home | History | Annotate | Download | only in ADT

Lines Matching refs:SetType

50 template<class SetType, bool External>   // Non-external set
53 SetType Visited;
56 template<class SetType>
57 class df_iterator_storage<SetType, true> {
59 df_iterator_storage(SetType &VSet) : Visited(VSet) {}
62 SetType &Visited;
82 class SetType =
87 public df_iterator_storage<SetType, ExtStorage> {
107 inline df_iterator(NodeRef Node, SetType &S)
108 : df_iterator_storage<SetType, ExtStorage>(S) {
112 inline df_iterator(SetType &S)
113 : df_iterator_storage<SetType, ExtStorage>(S) {
154 static df_iterator begin(const GraphT &G, SetType &S) {
157 static df_iterator end(const GraphT &G, SetType &S) { return df_iterator(S); }