/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
H A D | SMTConv.h | 268 (FromTy->isBlockPointerType() ^ ToTy->isBlockPointerType()) || in fromCast() 513 Ty->isBlockPointerType() || Ty->isReferenceType()) { in getZeroExpr() 617 (LTy->isBlockPointerType() || RTy->isBlockPointerType()) || in doTypeConversion() 628 (LTy->isBlockPointerType() ^ RTy->isBlockPointerType()) || in doTypeConversion() 630 if (LTy->isNullPtrType() || LTy->isBlockPointerType() || in doTypeConversion()
|
H A D | SValBuilder.h | 364 type->isBlockPointerType() || type->isNullPtrType() || in makeNullWithType()
|
H A D | SVals.h | 260 return T->isAnyPointerType() || T->isBlockPointerType() || in isLocType()
|
H A D | MemRegion.h | 643 assert(lTy->getTypePtr()->isBlockPointerType()); in BlockCodeRegion() 792 s->getType()->isBlockPointerType()); in SymbolicRegion()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaCast.cpp | 597 if (T->isBlockPointerType()) return BlockPtr; in unwrapCastAwayConstnessLevel() 682 SrcType->isBlockPointerType()) && in CastsAwayConstness() 685 DestType->isBlockPointerType()) && in CastsAwayConstness() 1120 if (((SrcType->isBlockPointerType() || SrcType->isFunctionPointerType()) && in checkCastFunctionType() 1487 else if (CStyle && DestType->isBlockPointerType()) { in TryStaticCast() 2448 SrcType->isBlockPointerType()) { in TryReinterpretCast() 2455 DestType->isBlockPointerType(); in TryReinterpretCast() 2457 SrcType->isBlockPointerType(); in TryReinterpretCast() 2505 if ((SrcType->isBlockPointerType() && DestType->isObjCObjectPointerType()) || in TryReinterpretCast() 2506 (DestType->isBlockPointerType() && SrcType->isObjCObjectPointerType())) in TryReinterpretCast() [all …]
|
H A D | SemaFixItUtils.cpp | 178 if ((T.isObjCObjectPointerType() || T.isBlockPointerType()) && in getScalarZeroExpressionForType()
|
H A D | SemaExprObjC.cpp | 428 !Element->getType()->isBlockPointerType()) { in CheckObjCCollectionLiteralElement() 1840 param->getType()->isBlockPointerType()) in CheckMessageArgumentTypes() 1892 if (typeArgs && Args[i]->isPRValue() && paramType->isBlockPointerType() && in CheckMessageArgumentTypes() 1893 Args[i]->getType()->isBlockPointerType() && in CheckMessageArgumentTypes() 2956 if (receiverIsIdLike || ReceiverType->isBlockPointerType() || in BuildInstanceMessage() 3912 srcKind = (castExprType->isBlockPointerType() ? 2 : 3); in diagnoseObjCARCConversion() 3932 << unsigned(castType->isBlockPointerType()) // to ObjC|block type in diagnoseObjCARCConversion() 3972 << unsigned(castExprType->isBlockPointerType()) // of ObjC|block type in diagnoseObjCARCConversion() 4672 CK = (T->isBlockPointerType() ? CK_AnyPointerToBlockPointerCast in BuildObjCBridgedCast() 4683 << (T->isBlockPointerType()? 1 : 0) in BuildObjCBridgedCast() [all …]
|
H A D | SemaExpr.cpp | 1047 if (ExprRes.get()->getType()->isBlockPointerType()) in DefaultVariadicArgumentPromotion() 5656 else if (Fn && Fn->getType()->isBlockPointerType()) in getVariadicCallType() 5776 unsigned FnKind = Fn->getType()->isBlockPointerType() in ConvertArgumentsForCall() 5928 ProtoArgType->isBlockPointerType()) in GatherArgumentsForCall() 7206 assert(E.get()->getType()->isBlockPointerType()); in maybeExtendBlockObject() 7903 if ((!PointerTy->isAnyPointerType() && !PointerTy->isBlockPointerType()) || in checkConditionalNullPointer() 8052 if (!LHSTy->isBlockPointerType() || !RHSTy->isBlockPointerType()) { in checkConditionalBlockPointerCompatibility() 8318 if (Ty->isBlockPointerType()) { in checkBlockType() 8483 if (LHSTy->isBlockPointerType() || RHSTy->isBlockPointerType()) in CheckConditionalOperands() 9338 if (RHSType->isBlockPointerType()) { in CheckAssignmentConstraints() [all …]
|
H A D | SemaOpenCL.cpp | 100 return Arg->getType()->isBlockPointerType(); in isBlockPointer()
|
H A D | SemaObjC.cpp | 103 !FirstType->isBlockPointerType()) in ActOnObjCForCollectionStmt() 646 if (typeArg->isBlockPointerType()) { in applyObjCTypeArgs() 1421 } else if (CT->isObjCIdType() || CT->isBlockPointerType()) { in CheckSubscriptingKind()
|
H A D | SemaSwift.cpp | 688 if (!CompletionBlockType->isBlockPointerType()) { in handleAsyncAttr()
|
H A D | SemaDeclAttr.cpp | 1233 if (QT->isAnyPointerType() || QT->isBlockPointerType()) in isValidPointerAttrType() 1239 return T->isAnyPointerType() || T->isBlockPointerType(); in isValidPointerAttrType() 1504 if (!T->isAnyPointerType() && !T->isBlockPointerType()) in handleOwnershipAttr() 1712 if (ResultType->isAnyPointerType() || ResultType->isBlockPointerType()) { in handleRestrictAttr() 1890 if (!VD || (!VD->getType()->isBlockPointerType() && in handleAnalyzerNoReturnAttr() 2666 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) { in handleSentinelAttr() 3751 return T.isFunctionPointerType() || T.isBlockPointerType(); in isFunctionLike()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | CallEvent.cpp | 81 if (T->isBlockPointerType() || in isCallback() 96 if (FieldT->isBlockPointerType() || FieldT->isFunctionPointerType()) in isCallback() 1418 } else if (CE->getCallee()->getType()->isBlockPointerType()) { in getSimpleCall()
|
H A D | Store.cpp | 82 if (CastToTy->isBlockPointerType()) { in castRegion()
|
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/ |
H A D | ObjCMT.cpp | 441 else if (ArgType->isBlockPointerType()) in PropertyMemoryAttribute() 448 return ArgType->isBlockPointerType() ? "copy" : "strong"; in PropertyMemoryAttribute() 531 if (RT->isBlockPointerType() || RT->isFunctionPointerType()) in rewriteToObjCProperty() 1047 T->isBlockPointerType() || T->isFunctionPointerType() || in TypeIsInnerPointer() 1368 if (!AT->isAnyPointerType() && !AT->isBlockPointerType()) in AuditedType()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGBlocks.cpp | 992 type->isBlockPointerType()) { in EmitBlockLiteral() 1615 bool isBlockPointer = T->isBlockPointerType(); in computeCopyInfoForBlockCapture() 2015 if (T->isBlockPointerType()) in getBlockFieldFlagsForObjCObjectPointer() 2519 if (type->isBlockPointerType()) { in buildByrefHelpers() 2534 if (type->isBlockPointerType()) { in buildByrefHelpers() 2734 if (!type->isObjCObjectPointerType() && !type->isBlockPointerType()) in emitByrefStructureInit()
|
H A D | CGObjC.cpp | 1593 else if (argLoad.getType()->isBlockPointerType()) in generateObjCSetterBody() 1597 } else if (ivarRef.getType()->isBlockPointerType()) { in generateObjCSetterBody() 1598 if (argLoad.getType()->isBlockPointerType()) in generateObjCSetterBody() 2284 if (type->isBlockPointerType()) in EmitARCRetain() 2503 bool isBlock = type->isBlockPointerType(); in EmitARCStoreStrong() 2567 if (!type->isBlockPointerType()) in EmitARCRetainAutorelease() 3058 assert(e->getType()->isBlockPointerType()); in shouldEmitSeparateBlockRetain() 3613 if (!hasImmediateRetain && e->getType()->isBlockPointerType()) { in EmitARCStoreStrong()
|
H A D | CGPointerAuth.cpp | 154 if (PointerType->isBlockPointerType()) in getPointerAuthInfoForType()
|
H A D | CodeGenTypes.cpp | 853 assert((T->isAnyPointerType() || T->isBlockPointerType()) && "Invalid type"); in isPointerZeroInitializable()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 1211 T->isBlockPointerType()) { in RewriteTypeIntoString() 3407 ? CK_BitCast : recExpr->getType()->isBlockPointerType() in SynthMessageExpr() 3442 if (SubExpr->getType()->isBlockPointerType()) { in SynthMessageExpr() 3463 } else if (userExpr->getType()->isBlockPointerType()) { in SynthMessageExpr() 4150 else if (VD->getType()->isBlockPointerType()) in SynthesizeBlockHelperFuncs() 4167 else if (VD->getType()->isBlockPointerType()) in SynthesizeBlockHelperFuncs() 4357 VD->getType()->isBlockPointerType()) in SynthesizeBlockLiterals() 5064 if (Ty->isBlockPointerType()) in RewriteByRefVar() 5128 if (Ty->isBlockPointerType() || Ty->isFunctionPointerType()) in RewriteByRefVar() 5180 BlockDeclRefs[i]->getType()->isBlockPointerType()) in CollectBlockDeclRefInfo() [all …]
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | Expr.cpp | 1838 assert(getSubExpr()->getType()->isBlockPointerType()); in CastConsistency() 1853 assert(getType()->isBlockPointerType() == in CastConsistency() 1854 getSubExpr()->getType()->isBlockPointerType()); in CastConsistency() 1859 assert(getType()->isBlockPointerType()); in CastConsistency() 1861 !getSubExpr()->getType()->isBlockPointerType()); in CastConsistency() 1865 assert(getType()->isBlockPointerType()); in CastConsistency() 1866 assert(getSubExpr()->getType()->isBlockPointerType()); in CastConsistency()
|
H A D | FormatString.cpp | 575 argTy->isBlockPointerType() || argTy->isNullPtrType()) { in matchesType()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
H A D | BasicObjCFoundationChecks.cpp | 760 if (ArgTy->isBlockPointerType()) in checkPreObjCMessage()
|
H A D | NullabilityChecker.cpp | 314 return T->isAnyPointerType() || T->isBlockPointerType(); in isValidPointerType()
|
/freebsd/contrib/llvm-project/clang/lib/Analysis/ |
H A D | CalledOnceCheck.cpp | 983 if (!Ty->isBlockPointerType()) { in isConventional()
|