Home
last modified time | relevance | path

Searched refs:ImmutableSmallSet (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/clang-tidy/misc/
H A DNoRecursionCheck.cpp28 template <typename T, unsigned SmallSize> class ImmutableSmallSet { class
39 ImmutableSmallSet() = delete;
40 ImmutableSmallSet(const ImmutableSmallSet &) = delete;
41 ImmutableSmallSet(ImmutableSmallSet &&) = delete;
42 T &operator=(const ImmutableSmallSet &) = delete;
43 T &operator=(ImmutableSmallSet &&) = delete;
46 ImmutableSmallSet(ArrayRef<T> Storage) { in ImmutableSmallSet() function in clang::tidy::misc::__anone26a69be0111::ImmutableSmallSet
163 const ImmutableSmallSet<CallGraphNode *, SmallSCCSize> SCCElts(SCC); in pathfindSomeCycle()