Home
last modified time | relevance | path

Searched refs:callExpr (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGCDAntipatternChecker.cpp93 auto SemaphoreCreateM = callExpr(allOf( in findGCDAntiPatternWithSemaphore()
107 auto ArgCallsSignalM = hasAnyArgument(stmt(hasDescendant(callExpr( in findGCDAntiPatternWithSemaphore()
118 callExpr(HasBlockAndCallsSignalM), in findGCDAntiPatternWithSemaphore()
123 callExpr( in findGCDAntiPatternWithSemaphore()
137 auto DispatchGroupCreateM = callExpr(callsName("dispatch_group_create")); in findGCDAntiPatternWithGroup()
146 stmt(callExpr(allOf(callsName("dispatch_group_enter"), in findGCDAntiPatternWithGroup()
153 auto ArgCallsSignalM = hasAnyArgument(stmt(hasDescendant(callExpr( in findGCDAntiPatternWithGroup()
164 callExpr(HasBlockAndCallsLeaveM), in findGCDAntiPatternWithGroup()
169 callExpr( in findGCDAntiPatternWithGroup()
H A DOSObjectCStyleCast.cpp86 auto DynamicCastM = callExpr(callee(functionDecl(hasName("safeMetaCast")))); in checkASTCodeBody()
94 auto AllocClassWithNameM = callExpr( in checkASTCodeBody()
H A DObjCAutoreleaseWriteChecker.cpp193 callExpr(ArgumentCaptureM), in checkASTCodeBody()
204 callExpr(allOf( in checkASTCodeBody()
H A DPointerSortingChecker.cpp91 stmt(callExpr(allOf(SortFuncM, IteratesPointerEltsM))).bind(WarnAtNode)); in matchSortWithPointers()
H A DRunLoopAutoreleaseLeakChecker.cpp143 callExpr(callee(functionDecl(hasName("xpc_main")))).bind(RunLoopRunBind); in getRunLoopRunM()
H A DNumberObjectConversionChecker.cpp279 callExpr(hasAnyArgument(allOf(hasType(SuspiciousScalarTypeM), in checkASTCodeBody()
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp279 callExpr( in findDirectMutation()
286 callExpr(allOf(isTypeDependent(), in findDirectMutation()
329 callExpr(NonConstRefParam, NotInstantiated), in findDirectMutation()
331 callExpr(TypeDependentCallee, in findDirectMutation()
431 match(findAll(callExpr(callee(namedDecl( in findCastMutation()
544 expr(anyOf(callExpr(NonConstRefParam, IsInstantiated, FuncDecl, in findFunctionArgMutation()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/
H A DGtestMatchers.cpp125 return callExpr(isExpandedFromMacro(getMacroName(Macro, Cmp)), in gtestComparisonInternal()
140 callExpr(callee(functionDecl(hasName( in gtestThatInternal()
H A DASTMatchersInternal.cpp803 const internal::VariadicDynCastAllOfMatcher<Stmt, CallExpr> callExpr; variable
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
H A DUninitializedObjectChecker.cpp543 auto AssertLikeM = callExpr(callee(functionDecl( in hasUnguardedAccess()
550 auto NoReturnFuncM = callExpr(callee(functionDecl(isNoReturn()))); in hasUnguardedAccess()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DLoopUnrolling.cpp109 return callExpr(forEachArgumentWithParam( in callByRef()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h1460 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CallExpr> callExpr;
3840 return callExpr(hasDeclaration(InnerMatcher)).matches(Node, Finder, Builder);
4725 callExpr(callee(functionDecl( in AST_POLYMORPHIC_MATCHER_P2()
4825 callExpr(callee(functionDecl( in AST_POLYMORPHIC_MATCHER_P2()
/freebsd-13.1/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DRegistry.cpp158 REGISTER_MATCHER(callExpr); in RegistryMaps()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaObjCProperty.cpp1540 Expr *callExpr = Res.getAs<Expr>(); in ActOnPropertyImplDecl() local
1542 dyn_cast_or_null<CXXOperatorCallExpr>(callExpr)) in ActOnPropertyImplDecl()