Home
last modified time | relevance | path

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

/llvm-project/clang-tools-extra/clang-tidy/misc/
H A DNoRecursionCheck.cpp26 template <typename T, unsigned SmallSize> class ImmutableSmallSet { class
37 ImmutableSmallSet() = delete;
38 ImmutableSmallSet(const ImmutableSmallSet &) = delete;
39 ImmutableSmallSet(ImmutableSmallSet &&) = delete;
40 T &operator=(const ImmutableSmallSet &) = delete;
41 T &operator=(ImmutableSmallSet &&) = delete;
44 ImmutableSmallSet(ArrayRef<T> Storage) { in ImmutableSmallSet() function in clang::tidy::misc::__anon86076a210111::ImmutableSmallSet
161 const ImmutableSmallSet<CallGraphNode *, SmallSCCSize> SCCElts(SCC); in pathfindSomeCycle()