Home
last modified time | relevance | path

Searched defs:FoldingSetTrait (Results 1 – 4 of 4) sorted by relevance

/freebsd-head/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDBasicValueFactory.cpp57 template<> struct FoldingSetTrait<SValData> { struct
58 static inline void Profile(const SValData& X, llvm::FoldingSetNodeID& ID) { in Profile()
64 template<> struct FoldingSetTrait<SValPair> { struct
65 static inline void Profile(const SValPair& X, llvm::FoldingSetNodeID& ID) { in Profile()
/freebsd-head/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDVirtualCallChecker.cpp34 template <> struct FoldingSetTrait<ObjectState> { struct
35 static inline void Profile(ObjectState X, FoldingSetNodeID &ID) { in Profile()
HDPointerArithChecker.cpp36 template <> struct FoldingSetTrait<AllocKind> { struct
37 static inline void Profile(AllocKind X, FoldingSetNodeID &ID) { in Profile()
/freebsd-head/contrib/llvm-project/llvm/include/llvm/ADT/
HDFoldingSet.h263 struct FoldingSetTrait : public DefaultFoldingSetTrait<T> {}; struct