Home | History | Annotate | Download | only in ADT

Lines Matching refs:SetType

47 template<class SetType, bool External>   // Non-external set
50 SetType Visited;
53 template<class SetType>
54 class df_iterator_storage<SetType, true> {
56 df_iterator_storage(SetType &VSet) : Visited(VSet) {}
58 SetType &Visited;
63 class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>,
67 public df_iterator_storage<SetType, ExtStorage> {
89 inline df_iterator(NodeType *Node, SetType &S)
90 : df_iterator_storage<SetType, ExtStorage>(S) {
97 inline df_iterator(SetType &S)
98 : df_iterator_storage<SetType, ExtStorage>(S) {
139 static df_iterator begin(const GraphT &G, SetType &S) {
142 static df_iterator end(const GraphT &G, SetType &S) { return df_iterator(S); }