Home
last modified time | relevance | path

Searched refs:TVR (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
DStore.cpp235 const auto *TVR = dyn_cast<TypedValueRegion>(MR); in regionMatchesCXXRecordType() local
236 if (!TVR) in regionMatchesCXXRecordType()
239 const CXXRecordDecl *RD = TVR->getValueType()->getAsCXXRecordDecl(); in regionMatchesCXXRecordType()
309 if (const auto *TVR = dyn_cast<TypedValueRegion>(MR)) in getCXXRecordType() local
310 return TVR->getValueType()->getAsCXXRecordDecl(); in getCXXRecordType()
DExprEngineCXX.cpp316 const TypedValueRegion *TVR = Caller->getParameterLocation( in computeObjectUnderConstruction() local
318 if (!TVR) in computeObjectUnderConstruction()
321 return loc::MemRegionVal(TVR); in computeObjectUnderConstruction()
DCallEvent.cpp293 if (const TypedValueRegion *TVR = in invalidateRegions() local
295 ValuesToInvalidate.push_back(loc::MemRegionVal(TVR)); in invalidateRegions()
DMemRegion.cpp1455 if (const auto *TVR = dyn_cast<TypedValueRegion>(R)) { in calculateOffset() local
1456 Ty = TVR->getDesugaredValueType(R->getContext()); in calculateOffset()
DRegionStore.cpp1535 if (const TypedValueRegion *TVR = dyn_cast<TypedValueRegion>(R)) in getUnderlyingType() local
1536 RegionTy = TVR->getValueType(); in getUnderlyingType()
/freebsd-12-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DDereferenceChecker.cpp260 const TypedValueRegion *TVR = dyn_cast_or_null<TypedValueRegion>(MR); in checkBind() local
261 if (!TVR) in checkBind()
264 if (!TVR->getValueType()->isReferenceType()) in checkBind()
DExprInspectionChecker.cpp307 if (const auto *TVR = MR->getAs<TypedValueRegion>()) { in analyzerDumpElementCount() local
308 ElementTy = TVR->getValueType(); in analyzerDumpElementCount()
DNullabilityChecker.cpp1096 const TypedValueRegion *TVR = in checkBind() local
1098 if (!TVR) in checkBind()
1101 QualType LocType = TVR->getValueType(); in checkBind()
DCheckObjCDealloc.cpp513 const TypedValueRegion *TVR = in diagnoseMissingReleases() local
515 const ObjCIvarRegion *IvarRegion = cast<ObjCIvarRegion>(TVR); in diagnoseMissingReleases()