Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DType.cpp698 bool Type::isUnsignedIntegerType() const { in isUnsignedIntegerType() function in Type
708 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType()
722 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
730 return VT->getElementType()->isUnsignedIntegerType(); in hasUnsignedIntegerRepresentation()
732 return isUnsignedIntegerType(); in hasUnsignedIntegerRepresentation()
DASTContext.cpp3711 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
3742 bool LHSUnsigned = LHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
3743 bool RHSUnsigned = RHSC->isUnsignedIntegerType(); in getIntegerTypeOrder()
DExprConstant.cpp1507 CharType->isUnsignedIntegerType()); in ExtractStringLiteralCharacter()
6294 L->getType()->isUnsignedIntegerType())); in EvaluateAsRValue()
/external/clang/lib/Analysis/
DScanfFormatString.cpp406 else if (PT->isUnsignedIntegerType()) in fixType()
DPrintfFormatString.cpp463 else if (QT->isUnsignedIntegerType()) { in fixType()
/external/clang/include/clang/AST/
DCanonicalType.h294 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isUnsignedIntegerType)
DType.h1670 bool isUnsignedIntegerType() const;
/external/clang/lib/Sema/
DSemaCast.cpp1468 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
1469 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
DSemaExprCXX.cpp3031 return T->isUnsignedIntegerType(); in EvaluateUnaryTypeTrait()
DSemaOverload.cpp1727 if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) { in IsIntegralPromotion()
DSemaExpr.cpp2602 bool CharIsUnsigned = Context.CharTy->isUnsignedIntegerType(); in ActOnNumericConstant()
/external/clang/lib/CodeGen/
DCGExprComplex.cpp570 if (Op.Ty->getAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) { in EmitBinDiv()