Searched refs:CompoundValData (Results 1 – 3 of 3) sorted by relevance
/freebsd-src/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BasicValueFactory.cpp | 32 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile() 124 const CompoundValData* 128 CompoundValData::Profile(ID, T, Vals); in getCompoundValData() 131 CompoundValData* D = CompoundValDataSet.FindNodeOrInsertPos(ID, InsertPos); in getCompoundValData() 134 D = new (BPAlloc) CompoundValData(T, Vals); in getCompoundValData()
|
/freebsd-src/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | BasicValueFactory.h | 40 class CompoundValData : public llvm::FoldingSetNode { 45 CompoundValData(QualType t, llvm::ImmutableList<SVal> l) : T(t), L(l) { in CompoundValData() function 126 llvm::FoldingSet<CompoundValData> CompoundValDataSet; 244 const CompoundValData *getCompoundValData(QualType T,
|
H A D | SVals.h | 45 class CompoundValData; variable 332 explicit CompoundVal(const CompoundValData *D) : NonLoc(CompoundValKind, D) { in getNumBits() 338 const CompoundValData* getValue() const { 339 return castDataAs<CompoundValData>();
|