Home
last modified time | relevance | path

Searched refs:isIntegralType (Results 1 – 19 of 19) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaCast.cpp1054 if (SrcType->isIntegralType(Context) && DestType->isIntegralType(Context)) in argTypeIsABIEquivalent()
1330 } else if (DestType->isIntegralType(Self.Context)) { in TryStaticCast()
2150 if (CStyle && SrcType->isIntegralType(Self.Context) in checkIntToPointerCast()
2310 if (SrcType->isNullPtrType() && DestType->isIntegralType(Self.Context)) { in TryReinterpretCast()
2338 if ((!destIsVector && !DestType->isIntegralType(Self.Context)) || in TryReinterpretCast()
2339 (!srcIsVector && !SrcType->isIntegralType(Self.Context))) in TryReinterpretCast()
2400 if (DestType->isIntegralType(Self.Context)) { in TryReinterpretCast()
3023 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { in CheckCStyleCast()
3033 if (!DestType->isIntegralType(Self.Context) && in CheckCStyleCast()
H A DSemaExpr.cpp5208 if (!DeclTy->isIntegralType(Context) && !DeclTy->isAnyPointerType()) { in ActOnOMPIteratorExpr()
5266 if (!Step->getType()->isIntegralType(Context)) { in ActOnOMPIteratorExpr()
7517 if (Ty->isVectorType() || Ty->isIntegralType(Context)) { in CheckVectorCast()
9804 if (vectorEltTy->isIntegralType(S.Context)) { in tryVectorConvertAndSplat()
9811 if (!scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat()
9823 else if (scalarTy->isIntegralType(S.Context)) in tryVectorConvertAndSplat()
9970 if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
9971 ScalarTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
9978 } else if (VectorEltTy->isIntegralType(S.Context) && in tryGCCVectorConvertAndSplat()
10012 } else if (ScalarTy->isIntegralType(S.Context)) { in tryGCCVectorConvertAndSplat()
[all …]
H A DSemaDeclAttr.cpp1651 if (!Ty->isDependentType() && !Ty->isIntegralType(Context) && in AddAllocAlignAttr()
3054 !ParmType->isIntegralType(S.getASTContext()))) { in handleVecTypeHint()
5860 if (RT->isIntegralType(S.Context)) in handleSwiftError()
5940 if (!ErrorParam->isIntegralType(S.Context)) { in checkSwiftAsyncErrorBlock()
H A DSemaOverload.cpp345 if (FromType->isRealFloatingType() && ToType->isIntegralType(Ctx)) { in getNarrowingKind()
1858 ToType->isIntegralType(S.Context)) { in IsStandardConversion()
1894 ToType->isIntegralType(S.Context)) || in IsStandardConversion()
2189 if (FromType->isIntegralType(Context) && in IsIntegralPromotion()
H A DSemaExprCXX.cpp4820 return T->isIntegralType(C); in EvaluateUnaryTypeTrait()
6048 return EltTy->isIntegralType(Ctx); in isValidVectorForConditionalCondition()
H A DSemaExprObjC.cpp4450 if (castACTC == ACTC_none && castType->isIntegralType(Context)) in CheckObjCConversion()
H A DSemaDecl.cpp7421 if (!R->isIntegralType(Context) && !R->isPointerType()) { in ActOnVariableDeclarator()
17692 assert((T->isIntegralType(Context) || T->isEnumeralType()) && in isRepresentableIntegerValue()
17709 assert((T->isIntegralType(Context) || in getNextLargerIntegralType()
H A DSemaChecking.cpp11796 if (T->isIntegralType(S.Context)) { in AnalyzeComparison()
12560 if (isObjCSignedCharBool(S, T) && Source->isIntegralType(S.Context)) { in CheckImplicitConversion()
H A DSemaTemplate.cpp3454 if (!Converted[1].getAsType()->isIntegralType(Context)) { in checkBuiltinTemplateIdType()
H A DSemaOpenMP.cpp17551 !Ty->isIntegralType(Context) && !Ty->isPointerType())) { in CheckOpenMPLinearDecl()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h468 bool isIntegralType() const { in isIntegralType() function
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h276 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isIntegralType)
H A DType.h1981 bool isIntegralType(const ASTContext &Ctx) const;
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DBodyFarm.cpp607 if (!isBoolean && !ResultTy->isIntegralType(C)) in create_OSAtomicCompareAndSwap()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp2964 E->getType()->isIntegralType(Ctx)) && in IgnoreParenNoopCasts()
2966 SubExpr->getType()->isIntegralType(Ctx)) && in IgnoreParenNoopCasts()
3761 if (isTypeDependent() || getType()->isIntegralType(Ctx)) in isNullPointerConstant()
H A DType.cpp1918 bool Type::isIntegralType(const ASTContext &Ctx) const { in isIntegralType() function in Type
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp2662 if (SubExpr->getType()->isIntegralType(*Context) && type->isBooleanType()) in RewriteObjCBoxedExpr()
3438 if (SubExpr->getType()->isIntegralType(*Context) && in SynthMessageExpr()
3461 if (userExpr->getType()->isIntegralType(*Context)) { in SynthMessageExpr()
H A DRewriteObjC.cpp2868 if (SubExpr->getType()->isIntegralType(*Context) && in SynthMessageExpr()
2891 if (userExpr->getType()->isIntegralType(*Context)) { in SynthMessageExpr()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp226 getArgType(FD, ArgN)->isIntegralType(FD->getASTContext()); in checkSpecificValidity()