Home | History | Annotate | Download | only in ADT

Lines Matching refs:SetType

46 template<class SetType, bool External>   // Non-external set
49 SetType Visited;
52 template<class SetType>
53 class df_iterator_storage<SetType, true> {
55 df_iterator_storage(SetType &VSet) : Visited(VSet) {}
57 SetType &Visited;
63 class SetType = llvm::SmallPtrSet<typename GraphTraits<GraphT>::NodeType*, 8>,
67 public df_iterator_storage<SetType, ExtStorage> {
88 inline df_iterator(NodeType *Node, SetType &S)
89 : df_iterator_storage<SetType, ExtStorage>(S) {
96 inline df_iterator(SetType &S)
97 : df_iterator_storage<SetType, ExtStorage>(S) {
131 typedef df_iterator<GraphT, SetType, ExtStorage, GT> _Self;
140 static inline _Self begin(const GraphT& G, SetType &S) {
143 static inline _Self end(const GraphT& G, SetType &S) { return _Self(S); }