Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h794 class CXXMemberCall : public CXXInstanceCall {
798 CXXMemberCall(const CXXMemberCallExpr *CE, ProgramStateRef St, in CXXMemberCall() function
802 CXXMemberCall(const CXXMemberCall &Other) = default;
804 void cloneTo(void *Dest) const override { new (Dest) CXXMemberCall(*this); } in cloneTo()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp107 const auto MC = dyn_cast<CXXMemberCall>(&Call); in checkPreCall()
H A DBlockInCriticalSectionChecker.cpp91 return cast<CXXMemberCall>(Call).getCXXThisVal().getAsRegion(); in getRegion()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DCallEvent.cpp868 const Expr *CXXMemberCall::getCXXThisExpr() const { in getCXXThisExpr()
872 RuntimeDefinition CXXMemberCall::getRuntimeDefinition() const { in getRuntimeDefinition()
1427 return create<CXXMemberCall>(MCE, State, LCtx, ElemRef); in getSimpleCall()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/RetainCountChecker/
H A DRetainCountChecker.cpp656 } else if (const auto *MCall = dyn_cast<CXXMemberCall>(&CallOrMsg)) { in checkSummary()