Home
last modified time | relevance | path

Searched refs:allOf (Results 1 – 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
HDGCDAntipatternChecker.cpp95 auto SemaphoreCreateM = callExpr(allOf( in findGCDAntiPatternWithSemaphore()
110 allOf( in findGCDAntiPatternWithSemaphore()
115 auto HasBlockAndCallsSignalM = allOf(HasBlockArgumentM, ArgCallsSignalM); in findGCDAntiPatternWithSemaphore()
126 allOf( in findGCDAntiPatternWithSemaphore()
148 stmt(callExpr(allOf(callsName("dispatch_group_enter"), in findGCDAntiPatternWithGroup()
156 allOf( in findGCDAntiPatternWithGroup()
161 auto HasBlockAndCallsLeaveM = allOf(HasBlockArgumentM, ArgCallsSignalM); in findGCDAntiPatternWithGroup()
172 allOf( in findGCDAntiPatternWithGroup()
HDNumberObjectConversionChecker.cpp268 binaryOperator(allOf(hasOperatorName("="), in checkASTCodeBody()
273 ifStmt(allOf( in checkASTCodeBody()
279 callExpr(hasAnyArgument(allOf(hasType(SuspiciousScalarTypeM), in checkASTCodeBody()
287 binaryOperator(allOf(anyOf(hasOperatorName("=="), hasOperatorName("!=")), in checkASTCodeBody()
294 binaryOperator(allOf(anyOf(hasOperatorName(">="), hasOperatorName(">"), in checkASTCodeBody()
301 conditionalOperator(allOf( in checkASTCodeBody()
310 unaryOperator(allOf(hasOperatorName("!"), in checkASTCodeBody()
315 explicitCastExpr(allOf(hasType(SuspiciousScalarBooleanTypeM), in checkASTCodeBody()
319 explicitCastExpr(allOf(hasType(SuspiciousScalarNumberTypeM), in checkASTCodeBody()
HDObjCAutoreleaseWriteChecker.cpp178 auto WritesOrCapturesInBlockM = hasAnyArgument(allOf( in checkASTCodeBody()
185 callExpr(allOf( in checkASTCodeBody()
187 objcMessageExpr(allOf( in checkASTCodeBody()
192 auto HasParamAndWritesInMarkedFuncM = allOf( in checkASTCodeBody()
HDOSObjectCStyleCast.cpp75 allOf(hasSourceExpression(allOf(OSObjTypeM, unless(DynamicCastM))), in checkASTCodeBody()
HDPointerSortingChecker.cpp89 auto PointerSortM = stmt(callExpr(allOf(SortFuncM, IteratesPointerEltsM)) in matchSortWithPointers()
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
HDLoopUnrolling.cpp114 allOf(hasType(referenceType()), in assignedToRef()
145 varDecl(allOf(hasInitializer(ignoringParenImpCasts( in forLoopMatcher()
157 to(varDecl(allOf(equalsBoundNode("initVarName"), in forLoopMatcher()
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
HDASTMatchers.h2542 allOf;
2622 allOf(anyOf(ofKind(UETT_AlignOf), ofKind(UETT_PreferredAlignOf)), in alignOfExpr()
2631 allOf(ofKind(UETT_SizeOf), InnerMatcher))); in sizeOfExpr()
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
HDRegistry.cpp130 REGISTER_MATCHER(allOf); in RegistryMaps()
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
HDASTMatchersInternal.cpp829 allOf = {internal::DynTypedMatcher::VO_AllOf}; variable