Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DConversionChecker.cpp148 if (!DestType->isRealType() || !SubType->isIntegerType()) in isLossOfPrecision()
/openbsd-src/gnu/llvm/clang/include/clang/AST/
H A DCanonicalType.h282 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isRealType)
H A DType.h2137 bool isRealType() const; // C99 6.2.5p17 (real floating + integer)
3576 (T->isRealType() && !T->isBooleanType() && !T->isEnumeralType());
/openbsd-src/gnu/llvm/clang/lib/ARCMigrate/
H A DObjCMT.cpp493 if (!QT->isRealType()) in rewriteToObjCProperty()
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DSemaExpr.cpp7916 if (!type->isRealType()) return false; in breakDownVectorType()
10833 if ((!RHSVecType && !RHSType->isRealType()) || in CheckVectorOperands()
10834 (!LHSVecType && !LHSType->isRealType())) { in CheckVectorOperands()
10917 if ((!LHSType->isVLSTBuiltinType() && !LHSType->isRealType()) || in CheckSizelessVectorOperands()
10918 (!RHSType->isVLSTBuiltinType() && !RHSType->isRealType())) { in CheckSizelessVectorOperands()
14383 } else if (ResType->isRealType()) { in CheckIncrementDecrementOperand()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DType.cpp2167 bool Type::isRealType() const { in isRealType() function in Type