Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaCast.cpp2258 if (!DestType->isArithmeticType()) { in CheckCStyleCast()
2259 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { in CheckCStyleCast()
2268 } else if (!SrcType->isArithmeticType()) { in CheckCStyleCast()
2270 DestType->isArithmeticType()) { in CheckCStyleCast()
DSemaExpr.cpp1226 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) in UsualArithmeticConversions()
3164 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { in CheckVecStepTraitOperandType()
3519 if (V.get()->getType()->isArithmeticType()) in CheckRealImagOperand()
5480 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) in CheckConditionalOperands()
6144 if (RHSType->isArithmeticType()) { in CheckAssignmentConstraints()
6180 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && in CheckAssignmentConstraints()
6675 if (compType.isNull() || !compType->isArithmeticType()) in CheckMultiplyDivideOperands()
6926 if (!compType.isNull() && compType->isArithmeticType()) { in CheckAdditionOperands()
6997 if (!compType.isNull() && compType->isArithmeticType()) { in CheckSubtractionOperands()
7597 if (LHSType->isArithmeticType() && RHSType->isArithmeticType()) in CheckCompareOperands()
[all …]
DSemaObjCProperty.cpp1150 lhsType->isArithmeticType()) { in ActOnPropertyImplDecl()
1446 if (lhsType != rhsType && lhsType->isArithmeticType()) in DiagnosePropertyAccessorMismatch()
DSemaExprCXX.cpp3143 return T->isArithmeticType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
4475 if (LTy->isArithmeticType() && RTy->isArithmeticType()) { in CXXCheckConditionalOperands()
DSemaOverload.cpp1366 if (FromType->isArithmeticType()) { in IsVectorConversion()
1561 (FromType->isArithmeticType() || in IsStandardConversion()
1578 } else if ((FromType->isAnyComplexType() && ToType->isArithmeticType()) || in IsStandardConversion()
1579 (ToType->isAnyComplexType() && FromType->isArithmeticType())) { in IsStandardConversion()
6455 HasArithmeticOrEnumeralTypes || Ty->isArithmeticType(); in AddTypesConvertedFrom()
/external/clang/include/clang/AST/
DCanonicalType.h268 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isArithmeticType)
DType.h1515 bool isArithmeticType() const; // C99 6.2.5p18 (integer + floating)
4796 (isArithmeticType() && !isEnumeralType());
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp775 if (GT && GQT.isConstQualified() && GT->isArithmeticType()) in getVarRegion()
/external/clang/lib/AST/
DType.cpp813 bool Type::isArithmeticType() const { in isArithmeticType() function in Type
/external/clang/lib/CodeGen/
DCGExpr.cpp1861 assert(E->getSubExpr()->getType()->isArithmeticType()); in EmitUnaryOpLValue()