Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp32 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile()
125 const CompoundValData*
129 CompoundValData::Profile(ID, T, Vals); in getCompoundValData()
132 CompoundValData* D = CompoundValDataSet.FindNodeOrInsertPos(ID, InsertPos); in getCompoundValData()
135 D = (CompoundValData*) BPAlloc.Allocate<CompoundValData>(); in getCompoundValData()
136 new (D) CompoundValData(T, Vals); in getCompoundValData()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h41 class CompoundValData : public llvm::FoldingSetNode {
46 CompoundValData(QualType t, llvm::ImmutableList<SVal> l) : T(t), L(l) { in CompoundValData() function
119 llvm::FoldingSet<CompoundValData> CompoundValDataSet;
239 const CompoundValData *getCompoundValData(QualType T,
H A DSVals.h45 class CompoundValData; variable
454 explicit CompoundVal(const CompoundValData* D) : NonLoc(CompoundValKind, D) {} in CompoundVal()
457 const CompoundValData* getValue() const { in getValue()
458 return static_cast<const CompoundValData *>(Data); in getValue()