|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
tools/clang/include/clang/AST/Type.h 2295 bool isSignedIntegerType() const;
References
tools/clang/include/clang/ASTMatchers/ASTMatchers.h 5055 return Node->isSignedIntegerType();
tools/clang/lib/AST/ASTContext.cpp 5832 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy;
5871 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType()))
5879 if (Promotable->isSignedIntegerType())
10714 Ty->isSignedIntegerType());
tools/clang/lib/AST/ExprConstant.cpp 9317 Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType())));
tools/clang/lib/AST/ItaniumMangle.cpp 4260 if (E->getType()->isSignedIntegerType())
4281 if (IE->getSubExpr()->getType()->isSignedIntegerType())
tools/clang/lib/AST/JSONNodeDumper.cpp 1389 /*Radix=*/10, IL->getType()->isSignedIntegerType()));
tools/clang/lib/AST/PrintfFormatString.cpp 848 if (QT->isSignedIntegerType())
881 else if (QT->isSignedIntegerType()) {
tools/clang/lib/AST/ScanfFormatString.cpp 516 else if (PT->isSignedIntegerType())
tools/clang/lib/AST/StmtPrinter.cpp 1119 bool isSigned = Node->getType()->isSignedIntegerType();
tools/clang/lib/AST/TextNodeDumper.cpp 767 bool isSigned = Node->getType()->isSignedIntegerType();
tools/clang/lib/AST/Type.cpp 1937 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
1951 return ET->getDecl()->getIntegerType()->isSignedIntegerType();
tools/clang/lib/CodeGen/CGAtomic.cpp 593 Op = E->getValueType()->isSignedIntegerType() ? llvm::AtomicRMWInst::Min
599 Op = E->getValueType()->isSignedIntegerType() ? llvm::AtomicRMWInst::Max
1117 LibCallName = E->getValueType()->isSignedIntegerType()
1125 LibCallName = E->getValueType()->isSignedIntegerType()
tools/clang/lib/CodeGen/CGBuiltin.cpp 498 bool Signed = Type->isSignedIntegerType();
tools/clang/lib/CodeGen/CGDebugInfo.cpp 2813 bool IsSigned = ED->getIntegerType()->isSignedIntegerType();
tools/clang/lib/CodeGen/CGException.cpp 1903 FilterExpr->getType()->isSignedIntegerType());
tools/clang/lib/CodeGen/CGExpr.cpp 2802 (T->isSignedIntegerType() ? 1 : 0);
tools/clang/lib/CodeGen/CodeGenFunction.cpp 550 HintQTy->isSignedIntegerType() ||
551 (HintEltQTy && HintEltQTy->getElementType()->isSignedIntegerType());
1941 size->getType()->isSignedIntegerType()) {
tools/clang/lib/CodeGen/TargetInfo.cpp 7261 Ty->isSignedIntegerType());
tools/clang/lib/Edit/RewriteObjCFoundationAPI.cpp 1018 if ((MK==NSAPI::NSNumberWithInteger) == OrigTy->isSignedIntegerType() &&
tools/clang/lib/Sema/SemaCast.cpp 1846 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) ||
1847 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) {
tools/clang/lib/Sema/SemaChecking.cpp10502 (!E->getType()->isSignedIntegerType() ||
10503 !E->IgnoreParenImpCasts()->getType()->isSignedIntegerType());
10943 bool SignedBitfield = BitfieldType->isSignedIntegerType();
11006 TruncatedValue.setIsSigned(BitfieldType->isSignedIntegerType());
11523 else if (E->getType()->isSignedIntegerType())
11895 if (Target->isSignedIntegerType())
11902 SourceRange.NonNegative && Source->isSignedIntegerType()) {
tools/clang/lib/Sema/SemaDeclAttr.cpp 3999 OldElemTy->isSignedIntegerType());
tools/clang/lib/Sema/SemaExprCXX.cpp 4619 return !T->isEnumeralType() && (T->isFloatingType() || T->isSignedIntegerType());
tools/clang/lib/Sema/SemaInit.cpp 1730 else if (elementType->isSignedIntegerType())
tools/clang/lib/Sema/SemaOverload.cpp 2013 (FromType->isSignedIntegerType() ||
2085 bool FromIsSigned = FromType->isSignedIntegerType();
2099 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) {
2132 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) {
tools/clang/lib/StaticAnalyzer/Checkers/ConversionChecker.cpp 157 if (DestType->isSignedIntegerType())
167 if (SubType->isSignedIntegerType())
189 if (!CastType->isUnsignedIntegerType() || !SubType->isSignedIntegerType())
tools/clang/lib/StaticAnalyzer/Checkers/MIGChecker.cpp 165 .getCanonicalType()->isSignedIntegerType())
tools/clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp 854 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType());
tools/lldb/source/Symbol/ClangASTContext.cpp 8842 if (enum_decl->getIntegerType()->isSignedIntegerType())
tools/lldb/unittests/Symbol/TestClangASTContext.cpp 194 EXPECT_TRUE(type_ptr->isSignedIntegerType());