/external/clang/lib/CodeGen/ |
D | TargetInfo.cpp | 631 Ty = EnumTy->getDecl()->getIntegerType(); in classifyArgumentType() 646 RetTy = EnumTy->getDecl()->getIntegerType(); in classifyReturnType() 790 Ty = EnumTy->getDecl()->getIntegerType(); in classifyArgumentType() 810 RetTy = EnumTy->getDecl()->getIntegerType(); in classifyReturnType() 1305 RetTy = EnumTy->getDecl()->getIntegerType(); in classifyReturnType() 1570 Ty = EnumTy->getDecl()->getIntegerType(); in classifyArgumentType() 2364 classify(ET->getDecl()->getIntegerType(), OffsetBase, Lo, Hi, isNamedArg); in classify() 2659 Ty = EnumTy->getDecl()->getIntegerType(); in getIndirectReturnResult() 2692 Ty = EnumTy->getDecl()->getIntegerType(); in getIndirectResult() 3061 RetTy = EnumTy->getDecl()->getIntegerType(); in classifyReturnType() [all …]
|
D | CodeGenTypes.cpp | 249 if (!ConvertType(ED->getIntegerType())->isIntegerTy(32)) in UpdateCompletedType() 592 return ConvertType(ED->getIntegerType()); in ConvertType()
|
D | CGExpr.cpp | 1210 return ET->getDecl()->getIntegerType()->isBooleanType(); in hasBooleanRepresentation() 1233 llvm::Type *LTy = CGF.ConvertTypeForMem(ED->getIntegerType()); in getRangeForType()
|
D | CGDebugInfo.cpp | 2252 ED->isFixed() ? getOrCreateType(ED->getIntegerType(), DefUnit) : nullptr; in CreateTypeDefinition()
|
/external/clang/lib/Analysis/ |
D | FormatString.cpp | 314 argTy = ETy->getDecl()->getIntegerType(); in matchesType() 331 argTy = ETy->getDecl()->getIntegerType(); in matchesType()
|
D | ScanfFormatString.cpp | 422 PT = ETy->getDecl()->getIntegerType(); in fixType()
|
D | PrintfFormatString.cpp | 602 QT = ETy->getDecl()->getIntegerType(); in fixType()
|
/external/clang/lib/AST/ |
D | Type.cpp | 1716 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); in isSignedIntegerType() 1730 return ET->getDecl()->getIntegerType()->isSignedIntegerType(); in isSignedIntegerOrEnumerationType() 1756 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerType() 1770 return ET->getDecl()->getIntegerType()->isUnsignedIntegerType(); in isUnsignedIntegerOrEnumerationType()
|
D | ASTContext.cpp | 1759 getTypeInfo(ED->getIntegerType()->getUnqualifiedDesugaredType()); in getTypeInfoImpl() 1906 T = ET->getDecl()->getIntegerType().getTypePtr(); in getPreferredTypeAlign() 4835 return ET->getDecl()->getIntegerType().getTypePtr(); in getIntegerTypeForEnum() 5555 const BuiltinType *BT = Enum->getIntegerType()->castAs<BuiltinType>(); in ObjCEncodingForEnumType() 7583 paramTy = Enum->getDecl()->getIntegerType(); in mergeFunctionTypes() 7613 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() 8034 T = ET->getDecl()->getIntegerType(); in getIntWidth() 8051 T = ETy->getDecl()->getIntegerType(); in getCorrespondingUnsignedType()
|
D | DeclPrinter.cpp | 412 Out << " : " << D->getIntegerType().stream(Policy); in VisitEnumDecl()
|
D | ASTDumper.cpp | 1093 dumpType(D->getIntegerType()); in VisitEnumDecl()
|
D | ASTImporter.cpp | 2702 QualType ToIntegerType = Importer.Import(D->getIntegerType()); in VisitEnumDecl()
|
/external/clang/tools/libclang/ |
D | CXType.cpp | 264 QualType T = TD->getIntegerType(); in clang_getEnumDeclIntegerType()
|
/external/clang/lib/Sema/ |
D | SemaDecl.cpp | 12021 !Prev->getIntegerType()->isDependentType() && in CheckEnumRedeclaration() 12023 Prev->getIntegerType())) { in CheckEnumRedeclaration() 12026 << EnumUnderlyingTy << Prev->getIntegerType(); in CheckEnumRedeclaration() 12948 ED->setPromotionType(ED->getIntegerType()); in ActOnTag() 14330 EltTy = Enum->getIntegerType(); in CheckEnumConstant() 14344 EltTy = Enum->getIntegerType(); in CheckEnumConstant() 14402 EltTy = Enum->getIntegerType(); in CheckEnumConstant() 14855 BestType = Enum->getIntegerType(); in ActOnEnumBody()
|
D | SemaTemplate.cpp | 5079 IntegerType = Enum->getDecl()->getIntegerType(); in CheckTemplateArgument() 5163 IntegerType = Context.getCanonicalType(Enum->getDecl()->getIntegerType()); in CheckTemplateArgument() 5543 T = ET->getDecl()->getIntegerType(); in BuildExpressionFromIntegralTemplateArgument()
|
D | SemaTemplateInstantiateDecl.cpp | 911 assert(!D->getIntegerType()->isDependentType() in VisitEnumDecl() 913 Enum->setIntegerType(D->getIntegerType()); in VisitEnumDecl()
|
D | SemaChecking.cpp | 5166 ExprTy = EnumTy->getDecl()->getIntegerType(); in checkFormatExpr() 7040 T = C.getCanonicalType(ET->getDecl()->getIntegerType()).getTypePtr(); in forTargetOfCanonicalType() 10533 C.hasSameType(ED1->getIntegerType(), ED2->getIntegerType()); in isLayoutCompatible()
|
D | SemaOverload.cpp | 301 ToType = ET->getDecl()->getIntegerType(); in getNarrowingKind() 1883 QualType Underlying = FromEnumType->getDecl()->getIntegerType(); in IsIntegralPromotion() 8728 !Context.hasSameType(EnumA->getIntegerType(), in isEquivalentInternalLinkageDeclaration() 8729 EnumB->getIntegerType())) in isEquivalentInternalLinkageDeclaration()
|
D | SemaDeclAttr.cpp | 3306 UnderlyingTy = ED->getIntegerType(); in CheckAlignasUnderalignment() 3487 OldTy = ED->getIntegerType(); in AddModeAttr()
|
D | SemaExprObjC.cpp | 612 ET->getDecl()->getIntegerType()); in BuildObjCBoxedExpr()
|
D | SemaType.cpp | 7353 Underlying = ED->getIntegerType(); in BuildUnaryTransformType()
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 763 QualType DesignatedEnumType = EnumDcl->getIntegerType(); in rewriteToNSMacroDecl()
|
/external/clang/include/clang/AST/ |
D | Decl.h | 3137 QualType getIntegerType() const { in getIntegerType() function
|
/external/clang/lib/Serialization/ |
D | ASTWriterDecl.cpp | 420 Record.AddTypeRef(D->getIntegerType()); in VisitEnumDecl()
|