Searched refs:BaseTy (Results 1 – 9 of 9) sorted by relevance
/external/clang/lib/AST/ |
D | Type.cpp | 1120 const Type *BaseTy = getBaseElementTypeUnsafe(); in isLiteralType() local 1121 assert(BaseTy && "NULL element type"); in isLiteralType() 1125 if (BaseTy->isIncompleteType()) in isLiteralType() 1133 if (BaseTy->isScalarType() || BaseTy->isVectorType() || in isLiteralType() 1134 BaseTy->isAnyComplexType()) in isLiteralType() 1137 if (BaseTy->isReferenceType()) in isLiteralType() 1140 if (const RecordType *RT = BaseTy->getAs<RecordType>()) { in isLiteralType() 1169 const Type *BaseTy = getBaseElementTypeUnsafe(); in isStandardLayoutType() local 1170 assert(BaseTy && "NULL element type"); in isStandardLayoutType() 1174 if (BaseTy->isIncompleteType()) in isStandardLayoutType() [all …]
|
D | ExprConstant.cpp | 2592 QualType BaseTy = E->getBase()->getType(); in VisitMemberExpr() local 2597 assert(BaseTy->castAs<RecordType>()->getDecl()->getCanonicalDecl() == in VisitMemberExpr() 2600 SubobjectDesignator Designator(BaseTy); in VisitMemberExpr() 2603 return ExtractSubobject(Info, E, Val, BaseTy, Designator, E->getType()) && in VisitMemberExpr() 2672 QualType BaseTy; in VisitMemberExpr() local 2676 BaseTy = E->getBase()->getType()->castAs<PointerType>()->getPointeeType(); in VisitMemberExpr() 2681 BaseTy = E->getBase()->getType(); in VisitMemberExpr() 2685 BaseTy = E->getBase()->getType(); in VisitMemberExpr() 2690 assert(BaseTy->getAs<RecordType>()->getDecl()->getCanonicalDecl() == in VisitMemberExpr() 2692 (void)BaseTy; in VisitMemberExpr() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGRecordLayoutBuilder.cpp | 1006 llvm::StructType *BaseTy = 0; in ComputeRecordLayout() local 1008 BaseTy = Builder.BaseSubobjectType; in ComputeRecordLayout() 1009 if (!BaseTy) BaseTy = Ty; in ComputeRecordLayout() 1013 new CGRecordLayout(Ty, BaseTy, Builder.IsZeroInitializable, in ComputeRecordLayout() 1042 if (BaseTy) { in ComputeRecordLayout() 1052 getTargetData().getTypeAllocSizeInBits(BaseTy) && in ComputeRecordLayout()
|
D | CGExpr.cpp | 2610 QualType BaseTy = BaseExpr->getType(); in EmitCallExpr() local 2611 BaseQuals = BaseTy.getQualifiers(); in EmitCallExpr()
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExprEngineCXX.cpp | 133 QualType BaseTy = CE->getType(); in VisitCXXConstructExpr() local 134 SVal BaseVal = getStoreManager().evalDerivedToBase(ThisVal, BaseTy); in VisitCXXConstructExpr()
|
D | ExprEngine.cpp | 463 QualType BaseTy = D.getBaseSpecifier()->getType(); in ProcessBaseDtor() local 464 SVal BaseVal = getStoreManager().evalDerivedToBase(ThisVal, BaseTy); in ProcessBaseDtor() 466 VisitCXXDestructor(BaseTy, cast<loc::MemRegionVal>(BaseVal).getRegion(), in ProcessBaseDtor()
|
/external/llvm/include/llvm/ |
D | DIBuilder.h | 152 DIType createInheritance(DIType Ty, DIType BaseTy, uint64_t BaseOffset,
|
/external/llvm/lib/VMCore/ |
D | DIBuilder.cpp | 294 DIType DIBuilder::createInheritance(DIType Ty, DIType BaseTy, in createInheritance() argument 308 BaseTy in createInheritance()
|
/external/clang/include/clang/AST/ |
D | Type.h | 3173 UnaryTransformType(QualType BaseTy, QualType UnderlyingTy, UTTKind UKind,
|