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;
83 class SetType =
88 public df_iterator_storage<SetType, ExtStorage> {
109 inline df_iterator(NodeRef Node, SetType &S)
110 : df_iterator_storage<SetType, ExtStorage>(S) {
115 inline df_iterator(SetType &S)
116 : df_iterator_storage<SetType, ExtStorage>(S) {
157 static df_iterator begin(const GraphT &G, SetType &S) {
160 static df_iterator end(const GraphT &G, SetType &S) { return df_iterator(S); }