Home
last modified time | relevance | path

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

/external/clang/lib/StaticAnalyzer/Core/
DBasicValueFactory.cpp29 void LazyCompoundValData::Profile(llvm::FoldingSetNodeID& ID, in Profile()
126 const LazyCompoundValData*
130 LazyCompoundValData::Profile(ID, store, region); in getLazyCompoundValData()
133 LazyCompoundValData *D = in getLazyCompoundValData()
137 D = (LazyCompoundValData*) BPAlloc.Allocate<LazyCompoundValData>(); in getLazyCompoundValData()
138 new (D) LazyCompoundValData(store, region); in getLazyCompoundValData()
DSVals.cpp151 return static_cast<const LazyCompoundValData*>(Data)->getStore(); in getStore()
155 return static_cast<const LazyCompoundValData*>(Data)->getRegion(); in getRegion()
DRegionStore.cpp326 typedef llvm::DenseMap<const LazyCompoundValData *,
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h45 class LazyCompoundValData : public llvm::FoldingSetNode {
49 LazyCompoundValData(const StoreRef &st, const TypedValueRegion *r) in LazyCompoundValData() function
75 llvm::FoldingSet<LazyCompoundValData> LazyCompoundValDataSet;
172 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
DSVals.h34 class LazyCompoundValData; variable
441 explicit LazyCompoundVal(const LazyCompoundValData *D) in LazyCompoundVal()
444 const LazyCompoundValData *getCVData() const { in getCVData()
445 return static_cast<const LazyCompoundValData*>(Data); in getCVData()
/external/clang/lib/StaticAnalyzer/Checkers/
DCallAndMessageChecker.cpp262 const LazyCompoundValData *D = LV->getCVData(); in PreVisitProcessArg()