Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaCast.cpp2367 if (!DestType->isArithmeticType()) { in CheckCStyleCast()
2368 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { in CheckCStyleCast()
2377 } else if (!SrcType->isArithmeticType()) { in CheckCStyleCast()
2379 DestType->isArithmeticType()) { in CheckCStyleCast()
DSemaExpr.cpp1285 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) in UsualArithmeticConversions()
3462 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { in CheckVecStepTraitOperandType()
3851 if (V.get()->getType()->isArithmeticType()) in CheckRealImagOperand()
6288 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { in CheckConditionalOperands()
6967 if (RHSType->isArithmeticType()) { in CheckAssignmentConstraints()
7002 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && in CheckAssignmentConstraints()
7625 if (compType.isNull() || !compType->isArithmeticType()) in CheckMultiplyDivideOperands()
7940 if (!compType.isNull() && compType->isArithmeticType()) { in CheckAdditionOperands()
8014 if (!compType.isNull() && compType->isArithmeticType()) { in CheckSubtractionOperands()
8721 if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) in CheckCompareOperands()
[all …]
DSemaObjCProperty.cpp1186 lhsType->isArithmeticType()) { in ActOnPropertyImplDecl()
1500 if (lhsType != rhsType && lhsType->isArithmeticType()) in DiagnosePropertyAccessorMismatch()
DSemaExprCXX.cpp3706 return T->isArithmeticType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
5035 if (LTy->isArithmeticType() && RTy->isArithmeticType()) { in CXXCheckConditionalOperands()
DSemaOverload.cpp1405 if (FromType->isArithmeticType()) { in IsVectorConversion()
1601 (FromType->isArithmeticType() || in IsStandardConversion()
1618 } else if ((FromType->isAnyComplexType() && ToType->isArithmeticType()) || in IsStandardConversion()
1619 (ToType->isAnyComplexType() && FromType->isArithmeticType())) { in IsStandardConversion()
7010 HasArithmeticOrEnumeralTypes || Ty->isArithmeticType(); in AddTypesConvertedFrom()
DSemaOpenMP.cpp7204 (getLangOpts().CPlusPlus && Type->isArithmeticType()))) { in ActOnOpenMPReductionClause()
/external/clang/include/clang/AST/
DCanonicalType.h267 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isArithmeticType)
DType.h1619 bool isArithmeticType() const; // C99 6.2.5p18 (integer + floating)
5238 (isArithmeticType() && !isEnumeralType());
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp786 if (GT && GQT.isConstQualified() && GT->isArithmeticType()) in getVarRegion()
/external/clang/lib/AST/
DType.cpp1808 bool Type::isArithmeticType() const { in isArithmeticType() function in Type
/external/clang/lib/CodeGen/
DCGExpr.cpp2209 assert(E->getSubExpr()->getType()->isArithmeticType()); in EmitUnaryOpLValue()