Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/clang/lib/Analysis/
H A DPrintfFormatString.cpp591 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
622 else if (QT->isUnsignedIntegerType()) { in fixType()
H A DScanfFormatString.cpp504 else if (PT->isUnsignedIntegerType()) in fixType()
H A DCFG.cpp592 bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() || in checkIncorrectRelationalOperator()
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DCanonicalType.h294 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
H A DType.h1781 bool isUnsignedIntegerType() const;
/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DType.cpp760 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
770 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
784 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
H A DASTContext.cpp4557 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
4603 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
4604 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
H A DExprConstant.cpp2046 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
2066 CharType->isUnsignedIntegerType()); in expandStringLiteral()
8441 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGExprScalar.cpp465 if (Ops.Ty->isUnsignedIntegerType() && in EmitMul()
1629 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
1680 } else if (CanOverflow && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
2075 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
2548 if (op.Ty->isUnsignedIntegerType() && in EmitAdd()
2579 if (op.Ty->isUnsignedIntegerType() && in EmitSub()
H A DCGExprComplex.cpp783 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaCast.cpp1660 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
1661 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
H A DSemaExprCXX.cpp3381 return T->isUnsignedIntegerType(); in EvaluateUnaryTypeTrait()
H A DSemaInit.cpp1299 else if (elementType->isUnsignedIntegerType()) in CheckVectorType()
H A DSemaExpr.cpp1557 bool CharIsUnsigned = CharTy->isUnsignedIntegerType(); in ActOnStringLiteral()
3237 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
H A DSemaChecking.cpp4378 if (ArgType->isUnsignedIntegerType()) { in CheckAbsoluteValueFunction()
H A DSemaOverload.cpp1819 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) { in IsIntegralPromotion()