Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp22 void CompoundValData::Profile(llvm::FoldingSetNodeID& ID, QualType T, in Profile()
110 const CompoundValData*
115 CompoundValData::Profile(ID, T, Vals); in getCompoundValData()
118 CompoundValData* D = CompoundValDataSet.FindNodeOrInsertPos(ID, InsertPos); in getCompoundValData()
121 D = (CompoundValData*) BPAlloc.Allocate<CompoundValData>(); in getCompoundValData()
122 new (D) CompoundValData(T, Vals); in getCompoundValData()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h25 class CompoundValData : public llvm::FoldingSetNode {
30 CompoundValData(QualType t, llvm::ImmutableList<SVal> l) in CompoundValData() function
72 llvm::FoldingSet<CompoundValData> CompoundValDataSet;
168 const CompoundValData *getCompoundValData(QualType T,
DSVals.h31 class CompoundValData; variable
355 explicit CompoundVal(const CompoundValData* D) : NonLoc(CompoundValKind, D) {} in CompoundVal()
358 const CompoundValData* getValue() const { in getValue()
359 return static_cast<const CompoundValData*>(Data); in getValue()