Home
last modified time | relevance | path

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

/external/llvm-project/clang-tools-extra/clang-tidy/misc/
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::__anona2e7f4e50111::ImmutableSmallSet
163 const ImmutableSmallSet<CallGraphNode *, SmallSCCSize> SCCElts(SCC); in PathfindSomeCycle()