Home
last modified time | relevance | path

Searched refs:isRealType (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp144 if (!DestType->isRealType() || !SubType->isIntegerType()) in isLossOfPrecision()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DCanonicalType.h282 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isRealType)
H A DType.h2250 bool isRealType() const; // C99 6.2.5p17 (real floating + integer)
3693 (T->isRealType() && !T->isBooleanType() && !T->isEnumeralType());
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp490 if (!QT->isRealType()) in rewriteToObjCProperty()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExpr.cpp8244 if (!type->isRealType()) return false; in breakDownVectorType()
11267 if ((!RHSVecType && !RHSType->isRealType()) || in CheckVectorOperands()
11268 (!LHSVecType && !LHSType->isRealType())) { in CheckVectorOperands()
11351 if ((!LHSType->isSveVLSBuiltinType() && !LHSType->isRealType()) || in CheckSizelessVectorOperands()
11352 (!RHSType->isSveVLSBuiltinType() && !RHSType->isRealType())) { in CheckSizelessVectorOperands()
14844 } else if (ResType->isRealType()) { in CheckIncrementDecrementOperand()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DType.cpp2209 bool Type::isRealType() const { in isRealType() function in Type