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.cpp142 return static_cast<const LazyCompoundValData*>(Data)->getStore(); in getStore()
146 return static_cast<const LazyCompoundValData*>(Data)->getRegion(); in getRegion()
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
DBasicValueFactory.h43 class LazyCompoundValData : public llvm::FoldingSetNode {
47 LazyCompoundValData(const StoreRef &st, const TypedValueRegion *r) in LazyCompoundValData() function
73 llvm::FoldingSet<LazyCompoundValData> LazyCompoundValDataSet;
171 const LazyCompoundValData *getLazyCompoundValData(const StoreRef &store,
DSVals.h32 class LazyCompoundValData; variable
378 explicit LazyCompoundVal(const LazyCompoundValData *D) in LazyCompoundVal()
381 const LazyCompoundValData *getCVData() const { in getCVData()
382 return static_cast<const LazyCompoundValData*>(Data); in getCVData()
/external/clang/lib/StaticAnalyzer/Checkers/
DCallAndMessageChecker.cpp167 const LazyCompoundValData *D = LV->getCVData(); in PreVisitProcessArg()