reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/clang/include/clang/AST/Type.h
 2300   bool isUnsignedIntegerType() const;

References

tools/clang/include/clang/ASTMatchers/ASTMatchers.h
 5041     return Node->isUnsignedIntegerType();
tools/clang/lib/AST/ASTContext.cpp
 5883   assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize);
 5929   bool LHSUnsigned = LHSC->isUnsignedIntegerType();
 5930   bool RHSUnsigned = RHSC->isUnsignedIntegerType();
tools/clang/lib/AST/ExprConstant.cpp
 2952                CharType->isUnsignedIntegerType());
 2975                CharType->isUnsignedIntegerType());
13423                                 L->getType()->isUnsignedIntegerType()));
tools/clang/lib/AST/PrintfFormatString.cpp
  854       if (QT->isUnsignedIntegerType() && !HasPlusPrefix)
  885   else if (QT->isUnsignedIntegerType()) {
tools/clang/lib/AST/ScanfFormatString.cpp
  518   else if (PT->isUnsignedIntegerType())
tools/clang/lib/AST/Type.cpp
 1977       return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
 1991       return ET->getDecl()->getIntegerType()->isUnsignedIntegerType();
tools/clang/lib/Analysis/CFG.cpp
  941     bool IntLarger = IntLiteral->getType()->isUnsignedIntegerType() ||
tools/clang/lib/CodeGen/CGExprComplex.cpp
  854     if (Op.Ty->castAs<ComplexType>()->getElementType()->isUnsignedIntegerType()) {
tools/clang/lib/CodeGen/CGExprScalar.cpp
  203       !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType())
  203       !LHSTy->isUnsignedIntegerType() || !RHSTy->isUnsignedIntegerType())
  728     if (Ops.Ty->isUnsignedIntegerType() &&
 2380         !(type->isUnsignedIntegerType() &&
 2426     } else if (E->canOverflow() && type->isUnsignedIntegerType() &&
 2848         !(type->isUnsignedIntegerType() &&
 3360   if (op.Ty->isUnsignedIntegerType() &&
 3505     if (op.Ty->isUnsignedIntegerType() &&
tools/clang/lib/Sema/SemaCast.cpp
 1846   if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
 1847       (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
tools/clang/lib/Sema/SemaChecking.cpp
  857         !Arg2->getType()->isUnsignedIntegerType()) {
  891       !Call->getArg(1)->getType()->isUnsignedIntegerType()) {
 9180   if (ArgType->isUnsignedIntegerType()) {
 9264   if (!ArgType->isUnsignedIntegerType()) return;
11891         if (Source->isUnsignedIntegerType()) {
11892           if (Target->isUnsignedIntegerType())
tools/clang/lib/Sema/SemaDeclAttr.cpp
 5613       (!getFunctionOrMethodParamType(D, 1)->isUnsignedIntegerType() ||
tools/clang/lib/Sema/SemaExpr.cpp
 1744     bool CharIsUnsigned = CharTy->isUnsignedIntegerType();
tools/clang/lib/Sema/SemaExprCXX.cpp
 4621     return T->isUnsignedIntegerType();
tools/clang/lib/Sema/SemaInit.cpp
 1732       else if (elementType->isUnsignedIntegerType())
tools/clang/lib/Sema/SemaOverload.cpp
 2138         if (FromType->isUnsignedIntegerType() && BitWidth <= ToSize) {
tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp
  189   if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType())
tools/clang/lib/StaticAnalyzer/Core/RangeConstraintManager.cpp
  457   bool IsUnsigned = T->isUnsignedIntegerType();
tools/clang/lib/StaticAnalyzer/Core/SValBuilder.cpp
  501                     castTy->isUnsignedIntegerType());
tools/clang/tools/extra/clang-tidy/bugprone/TooSmallLoopVariableCheck.cpp
  103   return IntExprType->isUnsignedIntegerType()
tools/clang/tools/extra/clang-tidy/readability/ImplicitBoolConversionCheck.cpp
   47     return Type->isUnsignedIntegerType() ? "0u" : "0";
  214   if (DestType->isUnsignedIntegerType()) {
tools/lldb/unittests/Symbol/TestClangASTContext.cpp
  197     EXPECT_TRUE(type_ptr->isUnsignedIntegerType());