Searched refs:RegionTy (Results 1 – 4 of 4) sorted by relevance
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | MemRegion.h | 207 template<typename RegionTy> const RegionTy* getAs() const; 208 template <typename RegionTy> 209 LLVM_ATTRIBUTE_RETURNS_NONNULL const RegionTy *castAs() const; 1415 template<typename RegionTy> 1416 const RegionTy* MemRegion::getAs() const { in getAs() 1417 if (const auto *RT = dyn_cast<RegionTy>(this)) in getAs() 1423 template <typename RegionTy> 1424 LLVM_ATTRIBUTE_RETURNS_NONNULL const RegionTy *MemRegion::castAs() const { in castAs() 1425 return cast<RegionTy>(this); in castAs() 1621 template <typename RegionTy, typename SuperTy, [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | MemRegion.cpp | 74 template <typename RegionTy, typename SuperTy, typename Arg1Ty> 75 RegionTy* MemRegionManager::getSubRegion(const Arg1Ty arg1, in getSubRegion() 78 RegionTy::ProfileRegion(ID, arg1, superRegion); in getSubRegion() 80 auto *R = cast_or_null<RegionTy>(Regions.FindNodeOrInsertPos(ID, InsertPos)); in getSubRegion() 83 R = new (A) RegionTy(arg1, superRegion); in getSubRegion() 91 template <typename RegionTy, typename SuperTy, typename Arg1Ty, typename Arg2Ty> 92 RegionTy* MemRegionManager::getSubRegion(const Arg1Ty arg1, const Arg2Ty arg2, in getSubRegion() 95 RegionTy::ProfileRegion(ID, arg1, arg2, superRegion); in getSubRegion() 97 auto *R = cast_or_null<RegionTy>(Regions.FindNodeOrInsertPos(ID, InsertPos)); in getSubRegion() 100 R = new (A) RegionTy(arg1, arg2, superRegion); in getSubRegion() [all …]
|
| H A D | RegionStore.cpp | 1670 QualType RegionTy; in getUnderlyingType() local 1672 RegionTy = TVR->getValueType(); in getUnderlyingType() 1675 RegionTy = SR->getSymbol()->getType(); in getUnderlyingType() 1677 return RegionTy; in getUnderlyingType() 1701 QualType RegionTy = getUnderlyingType(R); in getExistingLazyBinding() local 1702 if (!RegionTy.isNull() && in getExistingLazyBinding() 1703 !RegionTy->isVoidPointerType()) { in getExistingLazyBinding() 1705 if (!SVB.getContext().hasSameUnqualifiedType(RegionTy, SourceRegionTy)) in getExistingLazyBinding()
|
| H A D | ExprEngineCXX.cpp | 255 QualType RegionTy = ACtx.getPointerType(ReturnTy); in computeObjectUnderConstruction() local 257 SFC, RegionTy, currBldrCtx->blockCount()); in computeObjectUnderConstruction()
|