Home
last modified time | relevance | path

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

/external/clang/lib/Sema/
DSemaCast.cpp2066 if (!DestType->isArithmeticType()) { in CheckCStyleCast()
2067 if (!SrcType->isIntegralType(Self.Context) && SrcType->isArithmeticType()) { in CheckCStyleCast()
2074 } else if (!SrcType->isArithmeticType()) { in CheckCStyleCast()
2076 DestType->isArithmeticType()) { in CheckCStyleCast()
DSemaExpr.cpp1054 if (!LHSType->isArithmeticType() || !RHSType->isArithmeticType()) in UsualArithmeticConversions()
2887 if (!(T->isArithmeticType() || T->isVoidType() || T->isVectorType())) { in CheckVecStepTraitOperandType()
3178 if (V.get()->getType()->isArithmeticType()) in CheckRealImagOperand()
4944 if (LHSTy->isArithmeticType() && RHSTy->isArithmeticType()) { in CheckConditionalOperands()
5605 if (RHSType->isArithmeticType()) { in CheckAssignmentConstraints()
5641 if (LHSType->isArithmeticType() && RHSType->isArithmeticType() && in CheckAssignmentConstraints()
6123 if (compType.isNull() || !compType->isArithmeticType()) in CheckMultiplyDivideOperands()
6371 if (!compType.isNull() && compType->isArithmeticType()) { in CheckAdditionOperands()
6442 if (!compType.isNull() && compType->isArithmeticType()) { in CheckSubtractionOperands()
6989 if (LHS.get()->getType()->isArithmeticType() && in CheckCompareOperands()
[all …]
DSemaObjCProperty.cpp978 lhsType->isArithmeticType()) { in ActOnPropertyImplDecl()
1249 if (lhsType != rhsType && lhsType->isArithmeticType()) in DiagnosePropertyAccessorMismatch()
DSemaExprCXX.cpp3010 return T->isArithmeticType() && !T->isEnumeralType(); in EvaluateUnaryTypeTrait()
4328 if (LTy->isArithmeticType() && RTy->isArithmeticType()) { in CXXCheckConditionalOperands()
DSemaOverload.cpp1306 if (FromType->isArithmeticType()) { in IsVectorConversion()
1501 (FromType->isArithmeticType() || in IsStandardConversion()
1518 } else if ((FromType->isAnyComplexType() && ToType->isArithmeticType()) || in IsStandardConversion()
1519 (ToType->isAnyComplexType() && FromType->isArithmeticType())) { in IsStandardConversion()
6244 HasArithmeticOrEnumeralTypes || Ty->isArithmeticType(); in AddTypesConvertedFrom()
/external/clang/include/clang/AST/
DCanonicalType.h268 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isArithmeticType)
DType.h1483 bool isArithmeticType() const; // C99 6.2.5p18 (integer + floating)
4739 (isArithmeticType() && !isEnumeralType());
/external/clang/lib/StaticAnalyzer/Core/
DMemRegion.cpp722 if (GT && GQT.isConstQualified() && GT->isArithmeticType()) in getVarRegion()
/external/clang/lib/AST/
DType.cpp794 bool Type::isArithmeticType() const { in isArithmeticType() function in Type
/external/clang/lib/CodeGen/
DCGExpr.cpp1792 assert(E->getSubExpr()->getType()->isArithmeticType()); in EmitUnaryOpLValue()