Home
last modified time | relevance | path

Searched refs:CXXConstructorCall (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DGTestChecker.cpp103 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 DDynamicTypePropagation.cpp264 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in checkPreCall()
363 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in checkPostCall()
H A DBlockInCriticalSectionChecker.cpp110 if (const auto *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in isLockFunction()
H A DMoveChecker.cpp464 const auto *CC = dyn_cast_or_null<CXXConstructorCall>(&Call); in checkPostCall()
605 if (const auto *CC = dyn_cast<CXXConstructorCall>(&Call)) { in checkPreCall()
H A DMismatchedIteratorChecker.cpp115 } else if (isa<CXXConstructorCall>(&Call)) { in checkPreCall()
H A DSmartPtrModeling.cpp214 if (const auto *CC = dyn_cast<CXXConstructorCall>(&Call)) { in evalCall()
H A DIteratorModeling.cpp205 if (isa<CXXConstructorCall>(&Call) && Call.getNumArgs() == 1) { in checkPostCall()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h875 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 DExprEngineCallAndReturn.cpp656 } else if (const CXXConstructorCall *C = dyn_cast<CXXConstructorCall>(&Call)){ in bindReturnValue()
751 const CXXConstructorCall &Ctor = cast<CXXConstructorCall>(Call); in mayInlineCallKind()
H A DExprEngineCXX.cpp45 if (const CXXConstructorCall *Ctor = dyn_cast<CXXConstructorCall>(&Call)) { in performTrivialCopy()
H A DBugReporterVisitors.cpp594 if (const auto *CCall = dyn_cast<CXXConstructorCall>(Call)) { in VisitNode()