Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp23 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile()
107 const CompoundValData*
112 CompoundValData::Profile(ID, T, Vals); in getCompoundValData()
115 CompoundValData* D = CompoundValDataSet.FindNodeOrInsertPos(ID, InsertPos); in getCompoundValData()
118 D = (CompoundValData*) BPAlloc.Allocate<CompoundValData>(); in getCompoundValData()
119 new (D) CompoundValData(T, Vals); in getCompoundValData()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h27 class CompoundValData : public llvm::FoldingSetNode {
32 CompoundValData(QualType t, llvm::ImmutableList<SVal> l) in CompoundValData() function
74 llvm::FoldingSet<CompoundValData> CompoundValDataSet;
169 const CompoundValData *getCompoundValData(QualType T,
DSVals.h33 class CompoundValData; variable
415 explicit CompoundVal(const CompoundValData* D) : NonLoc(CompoundValKind, D) {} in CompoundVal()
418 const CompoundValData* getValue() const { in getValue()
419 return static_cast<const CompoundValData*>(Data); in getValue()