Home
last modified time | relevance | path

Searched refs:BaseTy (Results 1 – 9 of 9) sorted by relevance

/external/clang/lib/AST/
DType.cpp1120 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 …]
DExprConstant.cpp2592 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/
DCGRecordLayoutBuilder.cpp1006 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()
DCGExpr.cpp2610 QualType BaseTy = BaseExpr->getType(); in EmitCallExpr() local
2611 BaseQuals = BaseTy.getQualifiers(); in EmitCallExpr()
/external/clang/lib/StaticAnalyzer/Core/
DExprEngineCXX.cpp133 QualType BaseTy = CE->getType(); in VisitCXXConstructExpr() local
134 SVal BaseVal = getStoreManager().evalDerivedToBase(ThisVal, BaseTy); in VisitCXXConstructExpr()
DExprEngine.cpp463 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/
DDIBuilder.h152 DIType createInheritance(DIType Ty, DIType BaseTy, uint64_t BaseOffset,
/external/llvm/lib/VMCore/
DDIBuilder.cpp294 DIType DIBuilder::createInheritance(DIType Ty, DIType BaseTy, in createInheritance() argument
308 BaseTy in createInheritance()
/external/clang/include/clang/AST/
DType.h3173 UnaryTransformType(QualType BaseTy, QualType UnderlyingTy, UTTKind UKind,