Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDGCDAntipatternChecker.cpp95 auto SemaphoreCreateM = callExpr(allOf( in findGCDAntiPatternWithSemaphore()
109 auto ArgCallsSignalM = hasAnyArgument(stmt(hasDescendant(callExpr( in findGCDAntiPatternWithSemaphore()
120 callExpr(HasBlockAndCallsSignalM), in findGCDAntiPatternWithSemaphore()
125 callExpr( in findGCDAntiPatternWithSemaphore()
139 auto DispatchGroupCreateM = callExpr(callsName("dispatch_group_create")); in findGCDAntiPatternWithGroup()
148 stmt(callExpr(allOf(callsName("dispatch_group_enter"), in findGCDAntiPatternWithGroup()
155 auto ArgCallsSignalM = hasAnyArgument(stmt(hasDescendant(callExpr( in findGCDAntiPatternWithGroup()
166 callExpr(HasBlockAndCallsLeaveM), in findGCDAntiPatternWithGroup()
171 callExpr( in findGCDAntiPatternWithGroup()
HDObjCAutoreleaseWriteChecker.cpp174 callExpr(ArgumentCaptureM), in checkASTCodeBody()
185 callExpr(allOf( in checkASTCodeBody()
HDOSObjectCStyleCast.cpp68 auto DynamicCastM = callExpr(callee(functionDecl(hasName("safeMetaCast")))); in checkASTCodeBody()
HDPointerSortingChecker.cpp89 auto PointerSortM = stmt(callExpr(allOf(SortFuncM, IteratesPointerEltsM)) in matchSortWithPointers()
HDRunLoopAutoreleaseLeakChecker.cpp143 callExpr(callee(functionDecl(hasName("xpc_main")))).bind(RunLoopRunBind); in getRunLoopRunM()
HDNumberObjectConversionChecker.cpp279 callExpr(hasAnyArgument(allOf(hasType(SuspiciousScalarTypeM), in checkASTCodeBody()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
HDExprMutationAnalyzer.cpp225 callExpr(callee(expr(anyOf( in findDirectMutation()
264 callExpr(NonConstRefParam, NotInstantiated), in findDirectMutation()
266 callExpr(callee(expr(anyOf(unresolvedLookupExpr(), unresolvedMemberExpr(), in findDirectMutation()
330 match(findAll(callExpr(callee(namedDecl( in findCastMutation()
391 findAll(expr(anyOf(callExpr(NonConstRefParam, IsInstantiated, FuncDecl, in findFunctionArgMutation()
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/UninitializedObject/
HDUninitializedObjectChecker.cpp543 auto AssertLikeM = callExpr(callee(functionDecl( in hasUnguardedAccess()
553 auto NoReturnFuncM = callExpr(callee(functionDecl(isNoReturn()))); in hasUnguardedAccess()
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDLoopUnrolling.cpp106 return callExpr(forEachArgumentWithParam( in callByRef()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
HDASTMatchers.h1355 extern const internal::VariadicDynCastAllOfMatcher<Stmt, CallExpr> callExpr;
3364 return callExpr(hasDeclaration(InnerMatcher)).matches(Node, Finder, Builder);
4184 callExpr(callee(functionDecl( in AST_POLYMORPHIC_MATCHER_P2()
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
HDRegistry.cpp151 REGISTER_MATCHER(callExpr); in RegistryMaps()
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
HDASTMatchersInternal.cpp674 const internal::VariadicDynCastAllOfMatcher<Stmt, CallExpr> callExpr; variable
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSemaObjCProperty.cpp1555 Expr *callExpr = Res.getAs<Expr>(); in ActOnPropertyImplDecl() local
1557 dyn_cast_or_null<CXXOperatorCallExpr>(callExpr)) in ActOnPropertyImplDecl()