Home
last modified time | relevance | path

Searched refs:isSignedIntegerType (Results 1 – 23 of 23) sorted by relevance

/external/clang/lib/Analysis/
DPrintfFormatString.cpp670 if (QT->isSignedIntegerType()) in fixType()
703 else if (QT->isSignedIntegerType()) { in fixType()
DScanfFormatString.cpp502 else if (PT->isSignedIntegerType()) in fixType()
/external/clang/include/clang/AST/
DCanonicalType.h293 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(bool, isSignedIntegerType)
DType.h1891 bool isSignedIntegerType() const;
/external/clang/lib/CodeGen/
DCodeGenFunction.cpp592 hintQTy->isSignedIntegerType() || in EmitOpenCLKernelMetadata()
593 (hintEltQTy && hintEltQTy->getElementType()->isSignedIntegerType()); in EmitOpenCLKernelMetadata()
1680 size->getType()->isSignedIntegerType()) { in EmitVariablyModifiedType()
DCGException.cpp1697 FilterExpr->getType()->isSignedIntegerType()); in GenerateSEHFilterFunction()
DCGExpr.cpp2282 (T->isSignedIntegerType() ? 1 : 0); in EmitCheckTypeDescriptor()
DTargetInfo.cpp6231 Ty->isSignedIntegerType()); in EmitVAArg()
DCGBuiltin.cpp303 bool Signed = Type->isSignedIntegerType(); in getIntegerWidthAndSignedness()
/external/clang/lib/AST/
DType.cpp1700 bool Type::isSignedIntegerType() const { in isSignedIntegerType() function in Type
1710 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); in isSignedIntegerType()
1724 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); in isSignedIntegerOrEnumerationType()
DItaniumMangle.cpp3427 if (E->getType()->isSignedIntegerType()) in mangleExpression()
3448 if (IE->getSubExpr()->getType()->isSignedIntegerType()) in mangleExpression()
DStmtPrinter.cpp1208 bool isSigned = Node->getType()->isSignedIntegerType(); in VisitIntegerLiteral()
DASTDumper.cpp1829 bool isSigned = Node->getType()->isSignedIntegerType(); in VisitIntegerLiteral()
DASTContext.cpp4701 return FT->isSignedIntegerType() ? IntTy : UnsignedIntTy; in isPromotableBitField()
4739 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) in getPromotedIntegerType()
4747 if (Promotable->isSignedIntegerType()) in getPromotedIntegerType()
DExprConstant.cpp2847 return T->isSignedIntegerType() && in isOverflowingIntegerType()
5716 Elts.push_back(APValue(APSInt(Elt, EltTy->isSignedIntegerType()))); in VisitCastExpr()
/external/clang/lib/Sema/
DSemaCast.cpp1700 if ((SrcTy->isUnsignedIntegerType() && DestTy->isSignedIntegerType()) || in CheckCompatibleReinterpretCast()
1701 (SrcTy->isSignedIntegerType() && DestTy->isUnsignedIntegerType())) { in CheckCompatibleReinterpretCast()
DSemaOverload.cpp1778 (FromType->isSignedIntegerType() || in IsIntegralPromotion()
1781 (!FromType->isSignedIntegerType() && in IsIntegralPromotion()
1843 bool FromIsSigned = FromType->isSignedIntegerType(); in IsIntegralPromotion()
1857 FromIsSigned == PromoteTypes[Idx]->isSignedIntegerType())) { in IsIntegralPromotion()
1885 (FromType->isSignedIntegerType() && BitWidth <= ToSize)) { in IsIntegralPromotion()
DSemaChecking.cpp6577 bool ConstantSigned = ConstantT->isSignedIntegerType(); in DiagnoseOutOfRangeComparison()
6578 bool CommonSigned = CommonT->isSignedIntegerType(); in DiagnoseOutOfRangeComparison()
6887 TruncatedValue.setIsSigned(Bitfield->getType()->isSignedIntegerType()); in AnalyzeBitFieldAssignment()
DSemaExprCXX.cpp3774 return T->isSignedIntegerType(); in EvaluateUnaryTypeTrait()
DSemaDeclAttr.cpp3433 DestWidth, OldElemTy->isSignedIntegerType()); in handleModeAttr()
DSemaInit.cpp1447 else if (elementType->isSignedIntegerType()) in CheckVectorType()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineC.cpp728 assert(IV.isSigned() == OOE->getType()->isSignedIntegerType()); in VisitOffsetOfExpr()
/external/clang/lib/Edit/
DRewriteObjCFoundationAPI.cpp1016 if ((MK==NSAPI::NSNumberWithInteger) == OrigTy->isSignedIntegerType() && in rewriteToNumericBoxedExpression()