Home
last modified time | relevance | path

Searched refs:LazyCompoundValData (Results 1 – 5 of 5) sorted by relevance

/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp28 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, in Profile()
129 const LazyCompoundValData*
133 LazyCompoundValData::Profile(ID, store, region); in getLazyCompoundValData()
136 LazyCompoundValData *D = in getLazyCompoundValData()
140 D = (LazyCompoundValData*) BPAlloc.Allocate<LazyCompoundValData>(); in getLazyCompoundValData()
141 new (D) LazyCompoundValData(store, region); in getLazyCompoundValData()
DSVals.cpp181 return static_cast<const LazyCompoundValData*>(Data)->getStore(); in getStore()
185 return static_cast<const LazyCompoundValData*>(Data)->getRegion(); in getRegion()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h50 class LazyCompoundValData : public llvm::FoldingSetNode {
54 LazyCompoundValData(const StoreRef &st, const TypedRegion *r) in LazyCompoundValData() function
80 llvm::FoldingSet<LazyCompoundValData> LazyCompoundValDataSet;
178 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
DSVals.h35 class LazyCompoundValData; variable
405 explicit LazyCompoundVal(const LazyCompoundValData *D) in LazyCompoundVal()
408 const LazyCompoundValData *getCVData() const { in getCVData()
409 return static_cast<const LazyCompoundValData*>(Data); in getCVData()
/external/clang/lib/StaticAnalyzer/Checkers/
DCallAndMessageChecker.cpp146 const LazyCompoundValData *D = LV->getCVData(); in PreVisitProcessArg()