| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/Interp/ |
| H A D | PrimType.h | 62 constexpr bool isIntegralType(PrimType T) { return T <= PT_Bool; } in isIntegralType() function
|
| H A D | ByteCodeExprGen.cpp | 2957 if (isIntegralType(ToT) || ToT == PT_Bool) in emitPrimCast() 2961 if (isIntegralType(FromT) || FromT == PT_Bool) { in emitPrimCast() 2963 if (isIntegralType(ToT) || ToT == PT_Bool) in emitPrimCast()
|
| H A D | Interp.h | 488 assert(isIntegralType(Name) && in Neg()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaCast.cpp | 1086 if (SrcType->isIntegralType(Context) && DestType->isIntegralType(Context)) in argTypeIsABIEquivalent() 1379 } else if (DestType->isIntegralType(Self.Context)) { in TryStaticCast() 2199 if (CStyle && SrcType->isIntegralType(Self.Context) in checkIntToPointerCast() 2359 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) { in TryReinterpretCast() 2393 if ((!destIsVector && !DestType->isIntegralType(Self.Context)) || in TryReinterpretCast() 2394 (!srcIsVector && !SrcType->isIntegralType(Self.Context))) in TryReinterpretCast() 2455 if (DestType->isIntegralType(Self.Context)) { in TryReinterpretCast() 3141 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { in CheckCStyleCast() 3151 if (!DestType->isIntegralType(Self.Context) && in CheckCStyleCast()
|
| H A D | SemaExprCXX.cpp | 4518 else if (FromType->isIntegralType(Context)) in PerformImplicitConversion() 4522 else if (ToType->isIntegralType(Context)) in PerformImplicitConversion() 5048 return T->isIntegralType(C); in EvaluateUnaryTypeTrait() 6386 return EltTy->isIntegralType(Ctx); in isValidVectorForConditionalCondition() 6396 return EltTy->isIntegralType(Ctx); in isValidSizelessVectorForConditionalCondition()
|
| H A D | SemaExpr.cpp | 5627 if (!DeclTy->isIntegralType(Context) && !DeclTy->isAnyPointerType()) { in ActOnOMPIteratorExpr() 5689 if (!Step->getType()->isIntegralType(Context)) { in ActOnOMPIteratorExpr() 8425 if (Ty->isVectorType() || Ty->isIntegralType(Context)) { in CheckVectorCast() 10827 if (vectorEltTy->isIntegralType(S.Context)) { in tryVectorConvertAndSplat() 10834 if (!scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat() 10846 else if (scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat() 11001 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat() 11002 ScalarTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat() 11009 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat() 11043 } else if (ScalarTy->isIntegralType(S.Context)) { in tryGCCVectorConvertAndSplat() [all …]
|
| H A D | SemaDeclAttr.cpp | 1762 if (!Ty->isDependentType() && !Ty->isIntegralType(Context) && in AddAllocAlignAttr() 3285 !ParmType->isIntegralType(S.getASTContext()))) { in handleVecTypeHint() 6511 if (RT->isIntegralType(S.Context)) in handleSwiftError() 6591 if (!ErrorParam->isIntegralType(S.Context)) { in checkSwiftAsyncErrorBlock()
|
| H A D | SemaOverload.cpp | 362 if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) { in getNarrowingKind() 2085 ToType->isIntegralType(S.Context)) { in IsStandardConversion() 2125 ToType->isIntegralType(S.Context)) || in IsStandardConversion() 2421 if (FromType->isIntegralType(Context) && in IsIntegralPromotion()
|
| H A D | SemaExprObjC.cpp | 4444 if (castACTC == ACTC_none && castType->isIntegralType(Context)) in CheckObjCConversion()
|
| H A D | SemaDecl.cpp | 8094 if (!R->isIntegralType(Context) && !R->isPointerType()) { in ActOnVariableDeclarator() 19667 assert((T->isIntegralType(Context) || T->isEnumeralType()) && in isRepresentableIntegerValue() 19684 assert((T->isIntegralType(Context) || in getNextLargerIntegralType()
|
| H A D | SemaChecking.cpp | 14898 if (T->isIntegralType(S.Context)) { in AnalyzeComparison() 15672 if (isObjCSignedCharBool(S, T) && Source->isIntegralType(S.Context)) { in CheckImplicitConversion()
|
| H A D | SemaTemplate.cpp | 3777 if (!OrigType->isDependentType() && !OrigType->isIntegralType(Context)) { in checkBuiltinTemplateIdType()
|
| H A D | SemaOpenMP.cpp | 20262 !Ty->isIntegralType(Context) && !Ty->isPointerType())) { in CheckOpenMPLinearDecl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
| H A D | PDBTypes.h | 469 bool isIntegralType() const { in isIntegralType() function
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | CanonicalType.h | 276 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isIntegralType)
|
| H A D | Type.h | 2229 bool isIntegralType(const ASTContext &Ctx) const;
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 637 if (!isBoolean && !ResultTy->isIntegralType(C)) in create_OSAtomicCompareAndSwap()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | Expr.cpp | 3070 E->getType()->isIntegralType(Ctx)) && in IgnoreParenNoopCasts() 3072 SubExpr->getType()->isIntegralType(Ctx)) && in IgnoreParenNoopCasts() 3877 if (isTypeDependent() || getType()->isIntegralType(Ctx)) in isNullPointerConstant()
|
| H A D | Type.cpp | 1995 bool Type::isIntegralType(const ASTContext &Ctx) const { in isIntegralType() function in Type
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteModernObjC.cpp | 2663 if (SubExpr->getType()->isIntegralType(*Context) && type->isBooleanType()) in RewriteObjCBoxedExpr() 3439 if (SubExpr->getType()->isIntegralType(*Context) && in SynthMessageExpr() 3462 if (userExpr->getType()->isIntegralType(*Context)) { in SynthMessageExpr()
|
| H A D | RewriteObjC.cpp | 2868 if (SubExpr->getType()->isIntegralType(*Context) && in SynthMessageExpr() 2891 if (userExpr->getType()->isIntegralType(*Context)) { in SynthMessageExpr()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StdLibraryFunctionsChecker.cpp | 308 getArgType(FD, ArgN)->isIntegralType(FD->getASTContext()); in checkSpecificValidity()
|