Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp38 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, in Profile()
143 const LazyCompoundValData*
147 LazyCompoundValData::Profile(ID, store, region); in getLazyCompoundValData()
150 LazyCompoundValData *D = in getLazyCompoundValData()
154 D = (LazyCompoundValData*) BPAlloc.Allocate<LazyCompoundValData>(); in getLazyCompoundValData()
155 new (D) LazyCompoundValData(store, region); in getLazyCompoundValData()
H A DSVals.cpp145 return static_cast<const LazyCompoundValData*>(Data)->getStore(); in getStore()
149 return static_cast<const LazyCompoundValData*>(Data)->getRegion(); in getRegion()
H A DRegionStore.cpp359 typedef llvm::DenseMap<const LazyCompoundValData *,
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h61 class LazyCompoundValData : public llvm::FoldingSetNode {
66 LazyCompoundValData(const StoreRef &st, const TypedValueRegion *r) in LazyCompoundValData() function
120 llvm::FoldingSet<LazyCompoundValData> LazyCompoundValDataSet;
242 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
H A DSVals.h46 class LazyCompoundValData; variable
483 explicit LazyCompoundVal(const LazyCompoundValData *D) in LazyCompoundVal()
487 const LazyCompoundValData *getCVData() const { in getCVData()
488 return static_cast<const LazyCompoundValData *>(Data); in getCVData()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DCallAndMessageChecker.cpp320 const LazyCompoundValData *D = LV->getCVData(); in PreVisitProcessArg()