Home
last modified time | relevance | path

Searched refs:underlyingType (Results 1 – 5 of 5) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td373 def : Property<"underlyingType", QualType> {
378 return ctx.getUsingType(foundDeclaration, underlyingType);
386 def : Property<"underlyingType", QualType> {
424 def : Property<"underlyingType", QualType> {
432 return ctx.getDecltypeType(expression, underlyingType);
440 def : Property<"underlyingType", QualType> {
602 def : Property<"underlyingType", QualType> {
670 def : Property<"underlyingType", Optional<QualType>> {
682 if (!underlyingType) {
842 def : Property<"underlyingType", Optional<QualType>> {
[all …]
H A DType.h4905 DecltypeType(Expr *E, QualType underlyingType, QualType can = QualType());
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp7049 SplitQualType underlyingType = type.split(); in handleObjCOwnershipTypeAttr() local
7067 while (!prevTy || prevTy != underlyingType.Ty) { in handleObjCOwnershipTypeAttr()
7068 prevTy = underlyingType.Ty; in handleObjCOwnershipTypeAttr()
7069 underlyingType = underlyingType.getSingleStepDesugaredType(); in handleObjCOwnershipTypeAttr()
7071 underlyingType.Quals.removeObjCLifetime(); in handleObjCOwnershipTypeAttr()
7075 underlyingType.Quals.addObjCLifetime(lifetime); in handleObjCOwnershipTypeAttr()
7112 type = S.Context.getQualifiedType(underlyingType); in handleObjCOwnershipTypeAttr()
7616 QualType underlyingType = typedefDecl->getUnderlyingType(); in CheckNullabilityTypeSpecifier() local
7618 AttributedType::stripOuterNullability(underlyingType)) { in CheckNullabilityTypeSpecifier()
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DType.cpp3787 DecltypeType::DecltypeType(Expr *E, QualType underlyingType, QualType can) in DecltypeType() argument
3797 E(E), UnderlyingType(underlyingType) {} in DecltypeType()
H A DASTContext.cpp10504 QualType underlyingType = ET->getDecl()->getIntegerType(); in mergeEnumWithInteger() local
10505 if (underlyingType.isNull()) in mergeEnumWithInteger()
10507 if (Context.hasSameType(underlyingType, other)) in mergeEnumWithInteger()
10513 Context.getTypeSize(underlyingType) == Context.getTypeSize(other)) in mergeEnumWithInteger()