Home
last modified time | relevance | path

Searched refs:smartptr (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dmemory.cppm
H A Dmemory.inc136 // [util.smartptr.weak.bad], class bad_weak_ptr
139 // [util.smartptr.shared], class template shared_ptr
142 // [util.smartptr.shared.create], shared_ptr creation
148 // [util.smartptr.shared.spec], shared_ptr specialized algorithms
151 // [util.smartptr.shared.cast], shared_ptr casts
161 // [util.smartptr.shared.io], shared_ptr I/O
163 // [util.smartptr.weak], class template weak_ptr
166 // [util.smartptr.weak.spec], weak_ptr specialized algorithms
168 // [util.smartptr.ownerless], class template owner_less
171 // [util.smartptr.enab], class template enable_shared_from_this
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DSmartPtrChecker.cpp52 namespace smartptr { namespace
62 if (!smartptr::isStdSmartPtrCall(Call)) in checkPreCall()
74 if (smartptr::isNullSmartPtr(State, ThisRegion)) in checkPreCall()
H A DSmartPtrModeling.cpp126 namespace smartptr { namespace
272 return smartptr::isStdSmartPtr(Call.getArgExpr(0)) || in isPotentiallyComparisionOpCall()
273 smartptr::isStdSmartPtr(Call.getArgExpr(1)); in isPotentiallyComparisionOpCall()
294 if (!smartptr::isStdSmartPtr(FirstArg->getType()->getAsCXXRecordDecl())) in evalCall()
343 if (!smartptr::isStdSmartPtrCall(Call)) in evalCall()
396 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in evalCall()
413 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in evalCall()
564 if (smartptr::isNullSmartPtr(State, I.first)) in printState()
616 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in handleReset()
652 if (&BR.getBugType() != smartptr::getNullDereferenceBugType() || in handleRelease()
[all …]
H A DSmartPtr.h21 namespace smartptr {