| /openbsd-src/gnu/llvm/clang/lib/ARCMigrate/ |
| H A D | TransZeroOutPropsInDealloc.cpp | 73 RHS->isNullPointerConstant(Ctx, in VisitObjCMessageExpr() 212 if (E->isNullPointerConstant(Pass.Ctx, Expr::NPC_ValueDependentIsNull)) in isZero()
|
| H A D | TransUnbridgedCasts.cpp | 104 if (castExpr->isNullPointerConstant(Pass.Ctx, in VisitCastExpr()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCContainersASTChecker.cpp | 69 E->isNullPointerConstant(ASTC, Expr::NPC_ValueDependentIsNull)); in hasPointerToPointerSizedType()
|
| H A D | DeadStoresChecker.cpp | 340 if (RHS->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNull)) in observeStmt()
|
| H A D | IvarInvalidationChecker.cpp | 643 return (E->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNotNull) in isZero()
|
| H A D | MacOSKeychainAPIChecker.cpp | 356 if (DeallocatorExpr->isNullPointerConstant(C.getASTContext(), in checkPreStmt()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaFixItUtils.cpp | 102 isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)) in tryToFixConversion()
|
| H A D | SemaExpr.cpp | 561 UO->getSubExpr()->IgnoreParenCasts()->isNullPointerConstant( in CheckForNullPointerDereference() 6501 if (ArgExpr->isNullPointerConstant(Context, in CheckStaticArrayArgument() 7776 if (Src.get()->isNullPointerConstant(Context, in PrepareScalarCast() 8356 NullExpr->isNullPointerConstant(Context, in DiagnoseConditionalForNull() 8363 NullExpr->isNullPointerConstant(Context, in DiagnoseConditionalForNull() 8413 !NullExpr.get()->isNullPointerConstant(S.Context, in checkConditionalNullPointer() 10145 if (RHS.get()->isNullPointerConstant(Context, in CheckTransparentUnionArgumentConstraints() 10264 RHS.get()->isNullPointerConstant(Context, in CheckSingleAssignmentConstraints() 10278 if (LHSType->isQueueT() && RHS.get()->isNullPointerConstant( in CheckSingleAssignmentConstraints() 11485 if (PExp->IgnoreParenCasts()->isNullPointerConstant( in CheckAdditionOperands() [all …]
|
| H A D | SemaExprObjC.cpp | 2916 bool IsNull = Receiver->isNullPointerConstant(Context, in BuildInstanceMessage() 3562 if (e->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull)) in VisitExpr()
|
| H A D | SemaExprCXX.cpp | 766 if (E->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { in BuildCXXUuidof() 6803 E2->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { in FindCompositePointerType() 6811 E1->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) { in FindCompositePointerType()
|
| H A D | SemaOverload.cpp | 2440 return Expr->isNullPointerConstant(Context, in isNullPointerConstantForConversion() 3111 From->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNotNull) == in CheckPointerConversion() 3175 if (From->isNullPointerConstant(Context, Expr::NPC_ValueDependentIsNull)) in CheckPointerConversion() 3195 if (From->isNullPointerConstant(Context, in IsMemberPointerConversion() 3236 assert(From->isNullPointerConstant(Context, in CheckMemberPointerConversion()
|
| H A D | SemaChecking.cpp | 1612 if (!Arg4->isNullPointerConstant(S.Context, in SemaOpenCLBuiltinEnqueueKernel() 1623 if (!Arg5->isNullPointerConstant(S.Context, in SemaOpenCLBuiltinEnqueueKernel() 8260 return E->isNullPointerConstant( in SemaBuiltinARMMemoryTaggingCall() 8743 if (E->isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)) in checkFormatStringExpr() 17603 if (!ArgumentExpr->isNullPointerConstant(Context, in CheckArgumentWithTypeTag()
|
| H A D | SemaInit.cpp | 5793 return (e->isNullPointerConstant(C, Expr::NPC_ValueDependentIsNull) in isInvalidICRSource() 8314 isNullPointerConstant(S.Context, Expr::NPC_ValueDependentIsNotNull)) { in CheckForNullPointerDereference()
|
| H A D | SemaTemplate.cpp | 6561 if (Arg->isNullPointerConstant(S.Context, Expr::NPC_NeverValueDependent)) { in isNullPointerValueTemplateArgument()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | Expr.cpp | 2221 ->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNotNull)) in isNullPointerArithmeticExtension() 3867 Expr::isNullPointerConstant(ASTContext &Ctx, in isNullPointerConstant() function in Expr 3905 return CE->getSubExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() 3910 return ICE->getSubExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() 3914 return PE->getSubExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() 3919 return GE->getResultExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() 3923 return CE->getChosenSubExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() 3927 return DefaultArg->getExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() 3931 return DefaultInit->getExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() 3937 return M->getSubExpr()->isNullPointerConstant(Ctx, NPC); in isNullPointerConstant() [all …]
|
| H A D | ASTContext.cpp | 2895 E->IgnoreParenCasts()->isNullPointerConstant(*this, in isSentinelNullExpr()
|
| H A D | ExprConstant.cpp | 12348 E->getArg(1)->isNullPointerConstant(Info.Ctx, in VisitBuiltinCallExpr()
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | SValBuilder.cpp | 414 if (E->isNullPointerConstant(Ctx, Expr::NPC_ValueDependentIsNotNull)) in getConstantVal()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | Expr.h | 807 NullPointerConstantKind isNullPointerConstant(
|
| /openbsd-src/gnu/llvm/clang/lib/CodeGen/ |
| H A D | CGCall.cpp | 4480 Arg->isNullPointerConstant(getContext(), in getVarArgType()
|
| H A D | CGBuiltin.cpp | 5014 if (E->getArg(4)->isNullPointerConstant( in EmitBuiltinExpr() 5025 if (E->getArg(5)->isNullPointerConstant( in EmitBuiltinExpr()
|