Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaCast.cpp2090 if (!DestType->isArithmeticType()) { in CheckCStyleCast()
2091 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { in CheckCStyleCast()
2100 } else if (!SrcType->isArithmeticType()) { in CheckCStyleCast()
2102 DestType->isArithmeticType()) { in CheckCStyleCast()
DSemaExpr.cpp1095 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) in UsualArithmeticConversions()
2999 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { in CheckVecStepTraitOperandType()
3290 if (V.get()->getType()->isArithmeticType()) in CheckRealImagOperand()
5082 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { in CheckConditionalOperands()
5742 if (RHSType->isArithmeticType()) { in CheckAssignmentConstraints()
5778 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && in CheckAssignmentConstraints()
6260 if (compType.isNull() || !compType->isArithmeticType()) in CheckMultiplyDivideOperands()
6508 if (!compType.isNull() && compType->isArithmeticType()) { in CheckAdditionOperands()
6579 if (!compType.isNull() && compType->isArithmeticType()) { in CheckSubtractionOperands()
7128 if (LHS.get()->getType()->isArithmeticType() && in CheckCompareOperands()
[all …]
DSemaObjCProperty.cpp1079 lhsType->isArithmeticType()) { in ActOnPropertyImplDecl()
1361 if (lhsType != rhsType && lhsType->isArithmeticType()) in DiagnosePropertyAccessorMismatch()
DSemaExprCXX.cpp2995 return T->isArithmeticType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
4322 if (LTy->isArithmeticType() && RTy->isArithmeticType()) { in CXXCheckConditionalOperands()
DSemaOverload.cpp1380 if (FromType->isArithmeticType()) { in IsVectorConversion()
1575 (FromType->isArithmeticType() || in IsStandardConversion()
1592 } else if ((FromType->isAnyComplexType() && ToType->isArithmeticType()) || in IsStandardConversion()
1593 (ToType->isAnyComplexType() && FromType->isArithmeticType())) { in IsStandardConversion()
6330 HasArithmeticOrEnumeralTypes || Ty->isArithmeticType(); in AddTypesConvertedFrom()
/external/clang/include/clang/AST/
DCanonicalType.h268 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isArithmeticType)
DType.h1505 bool isArithmeticType() const; // C99 6.2.5p18 (integer + floating)
4730 (isArithmeticType() && !isEnumeralType());
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp738 if (GT && GQT.isConstQualified() && GT->isArithmeticType()) in getVarRegion()
/external/clang/lib/AST/
DType.cpp829 bool Type::isArithmeticType() const { in isArithmeticType() function in Type
/external/clang/lib/CodeGen/
DCGExpr.cpp1896 assert(E->getSubExpr()->getType()->isArithmeticType()); in EmitUnaryOpLValue()