Lines Matching refs:Set
30 llvm::DenseSet<T> Set; member in clang::tidy::misc::__anone26a69be0111::ImmutableSmallSet
34 bool isSmall() const { return Set.empty(); } in isSmall()
55 Set.reserve(Storage.size()); in ImmutableSmallSet()
56 Set.insert(Storage.begin(), Storage.end()); in ImmutableSmallSet()
66 return Set.count(V); in count()
81 llvm::DenseSet<T> Set; member in clang::tidy::misc::__anone26a69be0111::SmartSmallSetVector
86 bool isSmall() const { return Set.empty(); } in isSmall()
96 assert(Set.empty() && "Should not have already utilized the Set."); in populateSet()
101 Set.reserve(NewMaxElts); in populateSet()
102 Set.insert(Vector.begin(), Vector.end()); in populateSet()
112 return Set.count(V); in count()
128 bool SetInsertionSucceeded = Set.insert(V).second; in setInsert()
146 Set.clear(); in takeVector()