Searched refs:CXXConstructorCall (Results 1 – 11 of 11) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | GTestChecker.cpp | 103 void modelAssertionResultBoolConstructor(const CXXConstructorCall *Call, 106 void modelAssertionResultCopyConstructor(const CXXConstructorCall *Call, 131 const CXXConstructorCall *Call, bool IsRef, CheckerContext &C) const { in modelAssertionResultBoolConstructor() 160 const CXXConstructorCall *Call, CheckerContext &C) const { in modelAssertionResultCopyConstructor() 189 auto *CtorCall = dyn_cast<CXXConstructorCall>(&Call); in checkPostCall()
|
H A D | DynamicTypePropagation.cpp | 264 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in checkPreCall() 363 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in checkPostCall()
|
H A D | BlockInCriticalSectionChecker.cpp | 110 if (const auto *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in isLockFunction()
|
H A D | MoveChecker.cpp | 464 const auto *CC = dyn_cast_or_null<CXXConstructorCall>(&Call); in checkPostCall() 605 if (const auto *CC = dyn_cast<CXXConstructorCall>(&Call)) { in checkPreCall()
|
H A D | MismatchedIteratorChecker.cpp | 115 } else if (isa<CXXConstructorCall>(&Call)) { in checkPreCall()
|
H A D | SmartPtrModeling.cpp | 214 if (const auto *CC = dyn_cast<CXXConstructorCall>(&Call)) { in evalCall()
|
H A D | IteratorModeling.cpp | 205 if (isa<CXXConstructorCall>(&Call) && Call.getNumArgs() == 1) { in checkPostCall()
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | CallEvent.h | 875 class CXXConstructorCall : public AnyCXXConstructorCall { 886 CXXConstructorCall(const CXXConstructExpr *CE, const MemRegion *Target, in CXXConstructorCall() function 890 CXXConstructorCall(const CXXConstructorCall &Other) = default; 892 void cloneTo(void *Dest) const override { new (Dest) CXXConstructorCall(*this); } in cloneTo() 1402 CallEventRef<CXXConstructorCall> 1405 return create<CXXConstructorCall>(E, Target, State, LCtx); in getCXXConstructorCall()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
H A D | ExprEngineCallAndReturn.cpp | 656 } else if (const CXXConstructorCall *C = dyn_cast<CXXConstructorCall>(&Call)){ in bindReturnValue() 751 const CXXConstructorCall &Ctor = cast<CXXConstructorCall>(Call); in mayInlineCallKind()
|
H A D | ExprEngineCXX.cpp | 45 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in performTrivialCopy()
|
H A D | BugReporterVisitors.cpp | 594 if (const auto *CCall = dyn_cast<CXXConstructorCall>(Call)) { in VisitNode()
|