Home
last modified time | relevance | path

Searched refs:isArithmeticType (Results 1 – 11 of 11) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaCast.cpp2316 if (!DestType->isArithmeticType()) { in CheckCStyleCast()
2317 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { in CheckCStyleCast()
2326 } else if (!SrcType->isArithmeticType()) { in CheckCStyleCast()
2328 DestType->isArithmeticType()) { in CheckCStyleCast()
H A DSemaExpr.cpp1207 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) in UsualArithmeticConversions()
3414 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { in CheckVecStepTraitOperandType()
3800 if (V.get()->getType()->isArithmeticType()) in CheckRealImagOperand()
5828 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { in CheckConditionalOperands()
6505 if (RHSType->isArithmeticType()) { in CheckAssignmentConstraints()
6540 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && in CheckAssignmentConstraints()
7085 if (compType.isNull() || !compType->isArithmeticType()) in CheckMultiplyDivideOperands()
7402 if (!compType.isNull() && compType->isArithmeticType()) { in CheckAdditionOperands()
7473 if (!compType.isNull() && compType->isArithmeticType()) { in CheckSubtractionOperands()
8099 if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) in CheckCompareOperands()
[all …]
H A DSemaObjCProperty.cpp1091 lhsType->isArithmeticType()) { in ActOnPropertyImplDecl()
1403 if (lhsType != rhsType && lhsType->isArithmeticType()) in DiagnosePropertyAccessorMismatch()
H A DSemaExprCXX.cpp3308 return T->isArithmeticType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
4603 if (LTy->isArithmeticType() && RTy->isArithmeticType()) { in CXXCheckConditionalOperands()
H A DSemaOverload.cpp1353 if (FromType->isArithmeticType()) { in IsVectorConversion()
1547 (FromType->isArithmeticType() || in IsStandardConversion()
1564 } else if ((FromType->isAnyComplexType() && ToType->isArithmeticType()) || in IsStandardConversion()
1565 (ToType->isAnyComplexType() && FromType->isArithmeticType())) { in IsStandardConversion()
6858 HasArithmeticOrEnumeralTypes || Ty->isArithmeticType(); in AddTypesConvertedFrom()
H A DSemaOpenMP.cpp4848 (getLangOpts().CPlusPlus && Type->isArithmeticType()))) { in ActOnOpenMPReductionClause()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DCanonicalType.h267 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isArithmeticType)
H A DType.h1536 bool isArithmeticType() const; // C99 6.2.5p18 (integer + floating)
4901 (isArithmeticType() && !isEnumeralType());
/minix3/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp786 if (GT && GQT.isConstQualified() && GT->isArithmeticType()) in getVarRegion()
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DType.cpp828 bool Type::isArithmeticType() const { in isArithmeticType() function in Type
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp2046 assert(E->getSubExpr()->getType()->isArithmeticType()); in EmitUnaryOpLValue()