Home
last modified time | relevance | path

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

/external/clang/lib/Analysis/
DPrintfFormatString.cpp514 if (QT->isUnsignedIntegerType() && !HasPlusPrefix) in fixType()
545 else if (QT->isUnsignedIntegerType()) { in fixType()
DScanfFormatString.cpp463 else if (PT->isUnsignedIntegerType()) in fixType()
/external/clang/lib/AST/
DType.cpp745 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
755 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
769 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
777 return VT->getElementType()->isUnsignedIntegerType(); in hasUnsignedIntegerRepresentation()
779 return isUnsignedIntegerType(); in hasUnsignedIntegerRepresentation()
DASTContext.cpp4392 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
4423 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
4424 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
DExprConstant.cpp1883 CharType->isUnsignedIntegerType()); in extractStringLiteralCharacter()
1903 CharType->isUnsignedIntegerType()); in expandStringLiteral()
7875 L->getType()->isUnsignedIntegerType())); in FastEvaluateAsRValue()
/external/clang/lib/CodeGen/
DCGExprScalar.cpp421 if (Ops.Ty->isUnsignedIntegerType() && CGF.SanOpts->UnsignedIntegerOverflow) in EmitMul()
1484 !(type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
1536 CGF.IntTy->getBitWidth() && type->isUnsignedIntegerType() && in EmitScalarPrePostIncDec()
1923 !(type->isUnsignedIntegerType() && in EmitCompoundAssignLValue()
2381 if (op.Ty->isUnsignedIntegerType() && CGF.SanOpts->UnsignedIntegerOverflow) in EmitAdd()
2411 if (op.Ty->isUnsignedIntegerType() && CGF.SanOpts->UnsignedIntegerOverflow) in EmitSub()
DCGExprComplex.cpp607 if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()
/external/clang/include/clang/AST/
DCanonicalType.h295 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
DType.h1755 bool isUnsignedIntegerType() const;
/external/clang/lib/Sema/
DSemaCast.cpp1630 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
1631 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
DSemaExprCXX.cpp3211 return T->isUnsignedIntegerType(); in EvaluateUnaryTypeTrait()
DSemaOverload.cpp1835 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) { in IsIntegralPromotion()
DSemaExpr.cpp2993 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()