Home
last modified time | relevance | path

Searched refs:isUnsignedIntegerType (Results 1 – 16 of 16) sorted by relevance

/external/clang/lib/Analysis/
DPrintfFormatString.cpp676 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
707 else if (QT->isUnsignedIntegerType()) { in fixType()
DScanfFormatString.cpp504 else if (PT->isUnsignedIntegerType()) in fixType()
DCFG.cpp664 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()
/external/clang/include/clang/AST/
DCanonicalType.h294 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
DType.h1896 bool isUnsignedIntegerType() const;
/external/clang/lib/CodeGen/
DCGExprScalar.cpp464 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul()
1672 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
1720 } else if (CanOverflow && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2129 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
2602 if (op.Ty->isUnsignedIntegerType() && in EmitAdd()
2633 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
DCGExprComplex.cpp791 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
/external/clang/lib/AST/
DType.cpp1740 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
1750 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
1764 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
DASTContext.cpp4751 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
4797 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
4798 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
DExprConstant.cpp2130 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
2150 CharType->isUnsignedIntegerType()); in expandStringLiteral()
8818 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
/external/clang/lib/Sema/
DSemaCast.cpp1700 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
1701 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
DSemaExprCXX.cpp3776 return T->isUnsignedIntegerType(); in EvaluateUnaryTypeTrait()
DSemaInit.cpp1449 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
DSemaExpr.cpp1636 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral()
3276 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
DSemaChecking.cpp5077 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction()
DSemaOverload.cpp1891 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) { in IsIntegralPromotion()